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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
durgabhavani
Creator III
Creator III

help me to create months based on my date in dashboard?

Hi All,

Help me to create months-year based on my date in dashboard. My date is like below.

Date

14032018

Expected Output:

Jan-18

Feb-18

Mar-18

Apr-18

May-18

Jun-18

Jul-18

Aug-18

Sep-18

Oct-18

Nov-18

Dec-18

Thanks,

Durga

13 Replies
sunny_talwar

How can a single date (14032018)... be transformed into multiple dates?

durgabhavani
Creator III
Creator III
Author

I want to just derive month and year (MMM-YY) for current year using the variable (date). let me know if it is not possible.

sunny_talwar

May be this

Table:

LOAD Date(AddMonths(YearStart(Today()), IterNo() - 1), 'MMM-YY') as MonthYear

AutoGenerate 1

While IterNo() <= 12;

durgabhavani
Creator III
Creator III
Author

Perfect Sunny. Its working. thanks for reply.