Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have one issue in Expression Label..
In my bar chart comparing Current month and Previous Month data.
in label i have used Max(Month) but it showing Number... I want to show Month name..
based on selection i want to change...
Thanks in advance..............
Hi,
like the below snapshot.
PFA.
I got it..
Thanks everyone..
CurrentMonth:
=left(MonthName(Max(DDMonthYear)),3)
Previous Month:
=Date(addmonths(max(DDMonthYear), -1),'MMM')
Thanks for help Settu..
I hit Correct Answer............
Although it is resolved - I'd recommend to use date/time functions rather than string functions. That is, the current month should be simple:
=date(Max(DDMonthYear),'MMM')
Yes Michael,
Your right....