Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello:
How can I customize my Dimension statement to display only value in the previous month?
I tried
=
IF(max(date(Mydate)) >=monthstart(today(),-1) AND max(date(Mydate)) <= monthend(today(),-1),SomeNames)
but its not working I'd really appreciate any help with this.
Thanks
AO
QV has a month function that can be used:
If(Month(Mydate) = Month(Today())-1,SomeNames)
The "-1" in the later part is to get the previous month.