Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
How can i add Year to this Month Variable?
Month(AddMonths(Today(),-13))
I want it to show Dec 2014
Thanks
Date(Monthstart(AddMonths(Today(),-13)), 'MMM YYYY')
or without monthstart
Date(Monthstart(AddMonths(Today(),-13)), 'MMM YYYY')
or without monthstart
Thanks