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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

about expression of set function

hi,

im using set function(set analsys) in formula..

but i wonder about following expression.

// sum({<Month={"1>4<"}>} amount)

what i wanna express is Month between 1 to 3.

is the expression include Month of "4"?

and how can i express if them include Month of "4"?

Regards,

olfesio

1 Solution

Accepted Solutions
Not applicable
Author

This wont include month of 4. To include use the following expression:

sum({<Month={">1<=4"}>} amount)

-Kiran

View solution in original post

2 Replies
Not applicable
Author

This wont include month of 4. To include use the following expression:

sum({<Month={">1<=4"}>} amount)

-Kiran

Not applicable
Author

hi

thank you for your help.

i understand this expressions.