Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm looking to get a YearMonth field for the previous month based on todays date, this ideally needs to be TEXT. So for today I would like to 2017/06
Thanks
Kev
date(addmonths(today(),-1),'YYYY/MM')
Hi,
Try:
date(addmonths(today(),-1),'YYYY/06')
date(addmonths(today(),-1),'YYYY/MM')
Perfect thanks