J
Joan
I have designed a report where the user enters report parameters Start Date
and End Date on a form and when they then click the Preview button, my code
builds the 'where' criteria string called : mysql and opens the report using
mysql as the where argument. Essentially the criteria string says that
[ReceivedDate] must be >= StartDate and <= EndDate. The report works fine
except that the client would like to include one exception to this criteria.
The report prints out dog records of dogs that have come into inventory
between and including the StartDate and EndDate. However, sometimes a
Breeder will hold back a pup from a litter if it was small and bring it in
sometimes several weeks after the rest of the litter was brought in and
added to inventory. The client would like to also include this pup in the
report (because it belongs to the litter that was brought in earlier) even
though the [ReceivedDate] may fall outside the report parameters, StartDate
and EndDate. How do I go about getting my report to do this?
Joan
and End Date on a form and when they then click the Preview button, my code
builds the 'where' criteria string called : mysql and opens the report using
mysql as the where argument. Essentially the criteria string says that
[ReceivedDate] must be >= StartDate and <= EndDate. The report works fine
except that the client would like to include one exception to this criteria.
The report prints out dog records of dogs that have come into inventory
between and including the StartDate and EndDate. However, sometimes a
Breeder will hold back a pup from a litter if it was small and bring it in
sometimes several weeks after the rest of the litter was brought in and
added to inventory. The client would like to also include this pup in the
report (because it belongs to the litter that was brought in earlier) even
though the [ReceivedDate] may fall outside the report parameters, StartDate
and EndDate. How do I go about getting my report to do this?
Joan