Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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
Specialist III
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
Specialist III
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!!!