I want to show certain text depending on the date/date range.
Example if date is between 1/1/08 and 3/31/08, text on a report would reflect as "First Quarter"
4/1/08 - 6/30/08 would show text Second Quarter.
I tried using >=, i tried building into the query as a temp field, but it does not seem to work like i thought it would.
'If [quarter] >= "01/01/2008" or =< "03/31/2008" Then
'Me.[Quarter] = "First Quarter"
I wasn't sure if to use the Case function or an IIF statement...
suggestions.
Example if date is between 1/1/08 and 3/31/08, text on a report would reflect as "First Quarter"
4/1/08 - 6/30/08 would show text Second Quarter.
I tried using >=, i tried building into the query as a temp field, but it does not seem to work like i thought it would.
'If [quarter] >= "01/01/2008" or =< "03/31/2008" Then
'Me.[Quarter] = "First Quarter"
I wasn't sure if to use the Case function or an IIF statement...
suggestions.
Comment