I have a crosstab which categorises service types (row) by year (column) and records the amount of hours.
The service date is actually a datetime and I have converted it to year by formula: Year {datetime}
I only want to report on the current year and the previous year for comparison.
Is there any way OTHER than a select Year >= 2002 that I can always ensure only the last 2 years are being reported?
I don't want to have to come back on 1/1/04 and change my select statement to >= 2003.
The service date is actually a datetime and I have converted it to year by formula: Year {datetime}
I only want to report on the current year and the previous year for comparison.
Is there any way OTHER than a select Year >= 2002 that I can always ensure only the last 2 years are being reported?
I don't want to have to come back on 1/1/04 and change my select statement to >= 2003.