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