I have created a query in my database which shows year on year data by calendar year. However, I want to show it by fiscal year (running from 1 June to 31 May). So, for example, instead of 2014, 15, 16 etc, it will be 2014-15, 2015-16, 2016-17, 2017-18 and so on. Can someone please tell me how to do this? Below is how the query returns data (I have blanked out some personal information).
Currently the SQL is written as:
TRANSFORM Sum(FINANCIALS.Net) AS SumOfNet
SELECT FINANCIALS.[TYPE OF COST], Sum(FINANCIALS.Net) AS [Total Of Net]
FROM FINANCIALS
GROUP BY FINANCIALS.[TYPE OF COST]
PIVOT Format([Date],"yyyy");
But as a relative newbie to MS Access I am teaching myself as I go and i'm stuck on this.
Hope you can help!!!![]()