I'm using the follow expression as a query criteria to return the current fiscal year (July-June) value in the following text format; "FY 2020";
"FY " & Format(DateAdd("m",6,[Enter Date]),"yyyy")
I now need to return the value for the prior fiscal year. So I thought I could wrap the above expression in another DateAdd with a 'year - 1' .... but I can't seem to make it work.
Any help is always greatly appreciated!!
"FY " & Format(DateAdd("m",6,[Enter Date]),"yyyy")
I now need to return the value for the prior fiscal year. So I thought I could wrap the above expression in another DateAdd with a 'year - 1' .... but I can't seem to make it work.
Any help is always greatly appreciated!!