|
A nice addition to the taskpad in your calendar view is a reminder of the number of
days until a task is due. You can do this by adding a custom field to the view.
- Right-click on the column headings in the taskpad.
- Select the "Field Chooser"
- Click on the "New..." button
- Enter the name "DueIn" for the field name.
- Select the type "Formula".
- Enter (or copy and paste) the following formula:
- IIf(IsDate([Due Date]),Fix([Due Date]-Now()),"")
- Click "Okay"
- Drag the new field to the taskpad columns.
- The new field will calculate anytime your task has a due date.
|