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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

How to hide column when field values is empty

Hello All,

can some one help me How to hide column when field values is empty. i have tried below expression its not working for me.

=if(Len( [Provider])=0,0,1)
=if(count( [Provider])=0,0,1)
if(count( [Provider])=null(),1,0)
sum([Provider])>0
If(Len(Trim([([Provider])]))<>0 , [([Provider])])

Regards,

Navin

5 Replies
m_woolf
Master II
Master II

Maybe:

max(len(Provider))>0  to show the column

NavinReddy
Creator II
Creator II
Author

Good Evening @m_woolf , Thanks for your reply

i have tried with max(len(Provider))>0 expression not hiding the empty fieds data. Any suggestions please 

m_woolf
Master II
Master II

Can you attach a sample qvw?

NavinReddy
Creator II
Creator II
Author

@m_woolf sorry for security reason I do no have access to attache the file. Any suggestions please 

woudatje
Contributor
Contributor

 = If (Provider <> '' , Provider)

??