Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have field called month_order (FY:Apr to Mar) now I need to use in set analysis
In text object, max(month_order ) here am getting 12
I want to show Max Month Dec
I have tried with monthname(month_order) and test(month_order) but not working.
any ideas pls suggest!
You can define your month_order field in script using dual to give the field both a numeric and string value.
Shouldn't you want max(month_order) to show Mar?
With dual I have given already like dual('Apr',1)...............................................................('Mar',12)
In text object am using max(month_order) it returns 12 only
I want to show max month as Mar
how do I use in set analysis??
attached sample might be helpful
That is fine but how do we use in set analysis???
If I use in text object max(month) its giving me 12
I nee to to show employee count max month.
in textbox try like:
=only(aggr(max(Month),SortOrder))
hope this helps
If you need 'Dec' instead of 12, try like:
=Month(MakeDate(1, max(month_order )))