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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

want to show data for only blank values in straight table

Hi friends,

I want to show only those fileds which does not contain any date,
in the image column of date3 is blank but date 1 and date 2 having some dates in columns so i want to shows data if column of date 3 is blank in straight table

thanks

6 Replies
Anil_Babu_Samineni

Would you share sample qvw, The expression you made you need to take only Null values in set operator then Please un-check the Supress when value in null.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
prma7799
Master III
Master III

in the Dimension tab

if(len(trim(date3))>0,null())

Or please share a sample data

devarasu07
Master II
Master II

Hi,

In your ID dimension use below expression

=if(len(Date3)=0,ID,0)

enable check box to suppress null values

Null1.png

Anonymous
Not applicable
Author

Hi,

May be this will help you

If(isnull(date3),Body_No)

add this in expression

Thanks

Paridhi

ahaahaaha
Partner - Master
Partner - Master

Hi,

example in attached file.

Regards,

Andrey

Not applicable
Author

Thanks Andrey its working thanks lot