Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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 !