How do I display fiscal year in Cross tab report: I would like to get the columns as 2012-2013, 2013-2014 etc
Printable View
How do I display fiscal year in Cross tab report: I would like to get the columns as 2012-2013, 2013-2014 etc
Have you tried formulas like :
toText (year(CurrentDate)) + "-" + toText (year(CurrentDate) + 1)
?
I am a beginner, and I do not see other solutions, but this works (though is a bit boring, depending on the time range)
Thank you very much. It works perfect.