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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
RAJ6
Contributor III
Contributor III

What is the "not equal" operator for string?

Hi Talend Folks,

       

                      What is the "not equal" operator for string?

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Try this

!"Row1".equals("<value>")

View solution in original post

3 Replies
RAJ6
Contributor III
Contributor III
Author

 

!row1.example.equals("ok")

Anonymous
Not applicable

Try this

!"Row1".equals("<value>")

TRF
Champion II
Champion II

In case of, the following is much more secured:
row1.example != null && !row1.example.equals("ok")