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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

You mean last month? Try like:

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

View solution in original post

2 Replies
tresB
Champion III
Champion III

You mean last month? Try like:

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

Anonymous
Not applicable
Author

Thx)