Z
Zanstemic
I'm trying to limit a report to a date range using
Between [Forms]![View Reports]![date_start] And [Forms]![View
Reports]![date_end]
This is working fine for a filed that has a date in the table. However, I
really need to have the date range based on the following resulting date and
also the "Not Yet Seen":
Report Due Date:
IIf(Registration!EventID=4,IIf(QueryPeer_StartDate!RegistrationDate Is
Null,"No Start
Date",DateAdd('ww',3,QueryPeerStartDate!RegistrationDate)),IIf(QueryVisitCompleteDate![MaxOfDate
Scheduled] Is Null,"Not Yet
Seen",(DateAdd('ww',2,QueryVisitCompleteDate![MaxOfDate Scheduled]))))
Any advice for an intermediate to novice level would be appreciated.
Should this result be calculated in a separate table field and not part of
the query? Or, Is there a way to limit the result to a date range (date_start
to date_end) based on this result?
Thanks in advance for the guidance and direction.
Between [Forms]![View Reports]![date_start] And [Forms]![View
Reports]![date_end]
This is working fine for a filed that has a date in the table. However, I
really need to have the date range based on the following resulting date and
also the "Not Yet Seen":
Report Due Date:
IIf(Registration!EventID=4,IIf(QueryPeer_StartDate!RegistrationDate Is
Null,"No Start
Date",DateAdd('ww',3,QueryPeerStartDate!RegistrationDate)),IIf(QueryVisitCompleteDate![MaxOfDate
Scheduled] Is Null,"Not Yet
Seen",(DateAdd('ww',2,QueryVisitCompleteDate![MaxOfDate Scheduled]))))
Any advice for an intermediate to novice level would be appreciated.
Should this result be calculated in a separate table field and not part of
the query? Or, Is there a way to limit the result to a date range (date_start
to date_end) based on this result?
Thanks in advance for the guidance and direction.