Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Maybe:
max(len(Provider))>0 to show the column
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
Can you attach a sample qvw?
@m_woolf sorry for security reason I do no have access to attache the file. Any suggestions please
= If (Provider <> '' , Provider)
??