Hi again!
I have a question in regards to an approach.
I have a report that servers as a breakdown report. I need to have my report return totals based on different time criterion. For example:
Slightly stumped on my approach. Can anyone offer advice as to how I can achieve this?
Thanks.
My current thought is something along these lines. Maybe I'm off track.
As my ControlSource
I'm getting a parameter prompt for IIF.
I have a question in regards to an approach.
I have a report that servers as a breakdown report. I need to have my report return totals based on different time criterion. For example:
Code:
Total Number of sales (Count) Present- 3months 4-6 Months 7-12 Months
Thanks.
My current thought is something along these lines. Maybe I'm off track.
As my ControlSource
Code:
=Iff(DateDiff("m",[SoldDate],Date())<4,Count([SoldDate]))
Comment