Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
zhaohaifeng
Contributor III
Contributor III

Variable for Month

Hello everyone,

please help to explain the case below. Thanks in advance.

For variable V_MAXMONTH,  We define Let V_MAXMONTH=Month(TODAY()) in data load, my confuse was that  we  cant calculte $(V_MAXMONTH) in TEXT box, and also how to use the month variable in set analysis. Thanks in advance.


Best Regards,

Haifeng

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

try as below:

Let V_MAXMONTH = Month(TODAY());


in your textbox use only the variable name without $ expansion.


set analysis example:

sum( {< your_month_field = {"$(V_MAXMONTH)"} >} your_measure )


I hope this helps.

View solution in original post

3 Replies
gianpaolo_31
Contributor III
Contributor III

One workaround is to create the variable in the Variables section in the Edit Sheet.

ChennaiahNallani
Creator III
Creator III

Try like below.

in script

Let vMaxMonth = Month(Today());

Expresion

=vMaxMonth

agigliotti
Partner - Champion
Partner - Champion

try as below:

Let V_MAXMONTH = Month(TODAY());


in your textbox use only the variable name without $ expansion.


set analysis example:

sum( {< your_month_field = {"$(V_MAXMONTH)"} >} your_measure )


I hope this helps.