Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Regarding Dates?

HI everyone,

I have a small doubt in qlikview

in my month field :the month format is 2015M07 represents July 2007

i want the Month field as July only............

i.e.,

2015M07 to july

2015M06 to june

2015M05 to May

2015M04 to Apr

like that

11 Replies
ashwanin
Specialist
Specialist

Hi,

Might be this is what you required.

maxgro
MVP
MVP

just replace the '2015M07' with your field Month

=month(makedate(left('2015M07', 4), Right('2015M07', 2)))


you can do it in the script

load

     ....

     month(makedate(left(yourfield, 4), Right(yourfield, 2))) as NewMonth

     ....

or in the user interface (chart)