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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Error with not equal to in expression @ pivot table

Hi,

In pivot table, I'm trying to write the following expression

SUM({<[Cyence User Status] <> {'Disabled'}>}[Cyence Credit Approval Limit]) , but the system says error in modifier. But when I write,

SUM({<[Cyence User Status] = {'Disabled'}>}[Cyence Credit Approval Limit])

it works fine.

Can someone please help me with not equal to expression.

Thank you in advance.

Regards,

Adi

1 Solution

Accepted Solutions
ramoncova06
Partner - Specialist III
Partner - Specialist III


SUM({<[Cyence User Status] -= {'Disabled'}>}[Cyence Credit Approval Limit])


the <> does not work in the set analysis use "-=" instead

View solution in original post

2 Replies
ramoncova06
Partner - Specialist III
Partner - Specialist III


SUM({<[Cyence User Status] -= {'Disabled'}>}[Cyence Credit Approval Limit])


the <> does not work in the set analysis use "-=" instead

Not applicable
Author

Thanks Ramon!!!