Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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.

tresesco
MVP
MVP

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