Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

an input column in tfilterrow is not null

Hi all.
I have an input column in tfilterrow component and I want that this column is not null.
How can I achieve this???
Thanks,
Fabrizio
Labels (2)
4 Replies
Anonymous
Not applicable

Hello
Using the advanced mode, for example:
input_row.columnName==null
Best regards

shong
_AnonymousUser
Specialist III
Specialist III
Author

Hello
Using the advanced mode, for example:
input_row.columnName==null
Best regards

shong

Hi Shong. Thanks for your answer.
I have another question: if in the advanced mode I want to put more than a condition, how can I separate the two or more conditions??
Thanks,
Fabrizio
Anonymous
Not applicable

Hello
input_row.columnName1==null||input_row.columnName2.equals("yes")
or
input_row.columnName1==null&&input_row.columnName2.equals("yes")
Best regards
shong
Anonymous
Not applicable

Hi Shong,
Plz advice How to check not null condition in the above example.