Hi
I would like a column heading to read: April - 2005
Where the year is dependant on the parameter entered.
I'm using the following formula:
And getting a result of 'April - 2,005.00
I'm using CR 8.5 - do you know how I can format the number to be '2005'
Thanks
I would like a column heading to read: April - 2005
Where the year is dependant on the parameter entered.
I'm using the following formula:
Code:
If month({?StartDate}) in 4 to 12 then
'April - ' & Year({?StartDate})
Else If month({?StartDate}) in 1 to 3 then
'April - ' & Year({?StartDate}) -1
And getting a result of 'April - 2,005.00
I'm using CR 8.5 - do you know how I can format the number to be '2005'
Thanks