Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
prabhas277
Creator
Creator

Month function

Hi Experts,

I have one filed called "monthyear" . in my pivot table monthyear is the dimension. there it shows 42370,42430..like that instead  jan ,fed,...dec

How i can change the those numerical values into text?

if i writhe month(42370) then it will give the jan.. but here  i want dynamically?

pl help me on this

Thanks in advance

Labels (1)
4 Replies
surendraj
Specialist
Specialist

Try with

month(Date(42370)) -->It will give you jan.

In script level..

month(Date(Filed name)) as Month

So here

month(Date(monthyear)) as Month.

tresB
Champion III
Champion III

May be just -

Month(monthyear) ?

dsharmaqv
Creator III
Creator III

Simply use

=Date(monthyear)

or if you display month then

=Month(monthyear)

i did not understood what do you mean by dynamically?

muthukumar77
Partner - Creator III
Partner - Creator III

Hi,

Use

=Month(42370)

it will be return "Jan"

Muthukumar Pandiyan