Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
can anyone help me on the below problem.
I am working on periodic calendar(13 periods in each financial year and one period =28 days).
My Fiscal year start from 01 Apr 2017 and ends on 30 Mar 2018 also next fiscal year starts from 31 Mar 2018 and ends 29 Mar 2019 and so on …
Currently I am struggling to get the fiscal year for every date. So anyone can suggest me how to retrieve the fiscal year for this calendar.
Please see attachment of output of calendar.
You could use something like this within your calendar-script:
pick(ceil(rowno() / 364), 2017, 2018, 2019, ...) as [fiscal year]
- Marcus