Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Friends,
In a straight table, I have expression and I would like to have a Label like the following =(MonthName(AddMonths(today(),-1)), 'Sales') like June 2012 Sales.
Can any one advise me..
Regards
Chriss
Perhaps just this?
=MonthName(AddMonths(today(),-1))&' Sales'
Hi Chris,
You should set something similar to this.
=MonthName(AddMonths(today(),-1)) & ' Sales'
Hope that helps.
Miguel
Thanks Robert......
You're welcome. Miguel also answered already 😉