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

ask.. what is syntax of "not equal to" in expression?

hello, newbie need help,

thank you before..

what is syntax of "not equal to" in expression??

example,

count({<cancel = {'0'}>} sales) <---- that is equal to 0

now i want to set the condition that cancel <> 0

i use,

count({<cancel <> {'0'}>} sales) <---- it doesn't work..

help me plis,

thank you so much

regards !

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,

Use

count({<cancel -= {'0'}>} sales)


Meaning "all values for field cancel except for '0'".

Hope that helps.

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hi,

Use

count({<cancel -= {'0'}>} sales)


Meaning "all values for field cancel except for '0'".

Hope that helps.

Not applicable
Author

thank you miquel

best regards !