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

Announcements
Note: You may notice some temporary visual or styling issues in the Community. Our vendor is actively investigating.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

'=if( [LAND_COST_TDS_SGD]=0,[PART_NO_]) unable to filter missing value

'=if( [LAND_COST_TDS_SGD]=0,[PART_NO_]) unable to filter missing value

Hi All

I have a table with missing value i try to filter these missing value , it does not work.

meaning i only wanted to list those value is missing or null. those with value don't want to display.

Try below , unable to work :-

=if( [LAND_COST_TDS_SGD]=0,[PART_NO_])

Hope some one can advise me.

Paul

1 Solution

Accepted Solutions
tresesco
MVP
MVP

4 Replies
tresesco
MVP
MVP

PFA

Not applicable
Author

Try This

If(Len(Trim(LAND_COST_TDS_SGD))=0,PART_NO_,LAND_COST_TDS_SGD)

Not applicable
Author

Hi Paul,

you need to reconstruct your expression as

=if( IsNull([LAND_COST_TDS_SGD]),[PART_NO_])


Regards,

Rajesh

Not applicable
Author

Hi Sud

Thank you for your help in offer alternative solution , i choose the shorter one from other post.

Paul