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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Closed month name flag

Good day!

In load script i have flag:

month(today()) as CurrentMonthName.

is there any way to make similar field, but for closed month?

For example. today is 01.12.2015

month(today()) = 'Dec'

necessary flag = 'Nov'


Thanks.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

You mean last month? Try like:

Month(Addmonths(Today(), -1))

View solution in original post

2 Replies
tresesco
MVP
MVP

You mean last month? Try like:

Month(Addmonths(Today(), -1))

Anonymous
Not applicable
Author

Thx)