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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
jensej
Creator
Creator

Expression filter doesn't work

Hi guys!

In this subjob I want to to split values from my query into two separate files depending on one column "conn".

If conn = 'normal' then write in Servers file and if conn = 'tunnel' then in the Onprem.

File Servers should have 218 rows and Onprem 34 rows. Somehow the Servers file also get filled with the rows that belongs to Onprem file...

There is nothing wrong with my query and if I run it in the database I get the result I expect.

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

Can you double check your expression?

!row1.conn.equals("normal")

 

 

View solution in original post

3 Replies
Anonymous
Not applicable

Can you double check your expression?

!row1.conn.equals("normal")

 

 

jensej
Creator
Creator
Author

Thanks, just found the problem myself. The ! was the problem

Anonymous
Not applicable

Regarding to your snapshot, seems there is something wrong in the expression filter for output 'servers' row

it should be :

row1.conn.equals("normal")

instead of

!row1.conn.equals("normal")

 

please try it to see if it fix your issue?​