Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
Below working fine for Display Current Month :-
=Date(AddMonths(today(), -1),'MMM YY')
Below working for display Current Year :-
='S$K' & Chr(10) & date(date#(Year(Today())-0,'YYYY'),'YY') /* Year(Today())
I try to Get Current Qtr using below :-
=Right(year(TempDate),2) & '-Q' & ceil(Month(TempDate)/3)
I dont know how to start.
Paul
Try the below
=Right(year(TempDate),2) & '-Q' & ceil(Num(Month(TempDate))/3)
The expression that I mentioned should be used on the script, however, if you want to get the current quarter in the dashboard use the below
Right(year(Today()),2) & '-Q' & ceil(Num(Month(Today()))/3)
it will give you 20-Q2