Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
There are function calculating current Year,Month,Week but is there anyway i can get the current period?
Thanks in advance!
What do you mean by period? Fiscal period? Quarter? Semester?
Regards.
Here is the example of my data in period,
199001,
199002,
199003,
199004
It is something like quarter.
Would this work?
=year(today())&'0'&ceil(month(today())/3)
Ya, it works perfectly! Thanks!