I have a report with text parameters that represent Quarters and Years. For example, '1Q11' represents the 1st quarter of 2011, '2Q13' represents the 2nd quarter of 2013, and so on. I also have records that that have a field using this format, 'QuarterYear'.
The issue is, I need to incorporate this into a report, to have the data only display when the quarter and year is in between those specified in the parameter. For example, if a user selects '1Q12' and '4Q12', the report should display all records with a QuarterYear value of '1Q12','2Q12','3Q12', and '4Q12'. If the user selects '1Q12' and '2Q13', the report should display records with QuarterYear value of '1Q12','2Q12','3Q12','4Q12','1Q13', and '2Q13'.
It is difficult for me as these are not date values so I could not use a simple BETWEEN. Any suggestions?
DateTime(f.e. first date of that quarter) as value. – Tim Schmelter Nov 13 '12 at 15:59