Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Syntax for not equal sign in set analysis

Hi All,

I am trying to use set analysis which gives me the sum(sales) for all the clients except BB_INTERNAL. I tried this but got an error. Can any one help please. Thanks in advance.

sum({$<Client <> {'BG_INTERNAL'}>} Sales)

1 Solution

Accepted Solutions
Not applicable
Author

Harsh,

You can try

sum({$<Client -= {"BG_INTERNAL"}>} Sales)

Nimish

View solution in original post

4 Replies
llauses243
Creator III
Creator III

Hi,

BB_INTERNAL no equal to used in expression (BG_INTERNAL)

/Luis

Not applicable
Author

Hi Luis,

Sorry it was a typo at my end. I meant BB_INTERNAL.

Corrected :

sum({$<Client <> {'BB_INTERNAL'}>} Sales)

I cant find the syntax for a not equal sign inside a sset analysis. I am not sure if this the right way to do it. Thanks

Not applicable
Author

Harsh,

You can try

sum({$<Client -= {"BG_INTERNAL"}>} Sales)

Nimish

Not applicable
Author

Thanks Nimesh. It worked !!