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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 !!