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..............
Try,
=MonthName(Max(Month))
Hi Settu,
Thanks for response...
it's showing jan 1900
Hi All,
=If(Max(Month)=12, 'Dec',
If(Max(Month)=11, 'Nov', and so on......
This expression works fine............
any other solution..????
Sorry,
Try this,
Month(Max(Month))
Hi,
if you have to different field for month and year then try
max(Month) &' '& max(Year)
or create a monthyear field in script level and use it in your front end.
Regards
left(MonthName(Max(Month)),3)
date(Max(Month),'MMM')
Hi Paul ,
Check your default monthname settings .
SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';
Thanks
Hi Paul,
Try like this way:
Date(Max(Month), 'MMM')
Ramya.
HI All,
Thanks for reply everyone..
In expression label i want to show Month name and previous month name
PFA,