Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

set analysis

Dear all,

help please: what is wrong into the following expression ?

sum({<left(FLAG_PART,2)={'OM'}>} ORDERS)

I don't know. Thanks in advance

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You can only use pure field names on the left of the equal sign in a set analysis field modifier. So either create a field in your script that contains only the left most two chars of field FLAG_PART, or use a search expression:

sum({< FLAG_PART = {"OM*"}>} ORDERS)

View solution in original post

2 Replies
swuehl
MVP
MVP

You can only use pure field names on the left of the equal sign in a set analysis field modifier. So either create a field in your script that contains only the left most two chars of field FLAG_PART, or use a search expression:

sum({< FLAG_PART = {"OM*"}>} ORDERS)

Anonymous
Not applicable
Author

Thanks very much, you are great !!