G
Guest
I have three fields: AppealDate, MeetingDate, and DecisionDate. MeetingDate
and DecisionDate can have null values because they have not occurred. I want
to create fields that will show the number of days between:
1. AppealDate and MeetingDate.
2. AppealDate and DecisionDate
3. MeetingDate and DecisionDate
I have the following control source for an unbound field named
“FStepATimeLineâ€.
=DateDiff ("d", [AppealDate] , Now())
My problem is how do I get a running value when the fields MeetingDate and
DecisionDate are null? If there is no value for MeetingDate and DecisionDate
I want the value to be current number of days between the AppealDate and now
for #1 and #2 above, and for MeetingDate and now for #3. If a date is
entered for either MeetingDate or DecisionDate I want the values for those
controls to stop. Does this make sense?
Thanks for the help.
and DecisionDate can have null values because they have not occurred. I want
to create fields that will show the number of days between:
1. AppealDate and MeetingDate.
2. AppealDate and DecisionDate
3. MeetingDate and DecisionDate
I have the following control source for an unbound field named
“FStepATimeLineâ€.
=DateDiff ("d", [AppealDate] , Now())
My problem is how do I get a running value when the fields MeetingDate and
DecisionDate are null? If there is no value for MeetingDate and DecisionDate
I want the value to be current number of days between the AppealDate and now
for #1 and #2 above, and for MeetingDate and now for #3. If a date is
entered for either MeetingDate or DecisionDate I want the values for those
controls to stop. Does this make sense?
Thanks for the help.