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: 
brf10043
Creator
Creator

Display table only it contains data

All,

I have an odd question.  I have a dashboard that contains several tables.  Depending on what filters are selected some tables may not include any data.

Is it possible to create a Layout expression to only show the table if it contains any data?

2 Replies
vishsaggi
Champion III
Champion III

Can you give us an example with some sample data. You can restrict in QV script.

MK9885
Master II
Master II

Maybe in Settings>Layout>Conditional> give your expression with if <0

Ex:

if(Count(ID)<0,1,0)

or

(if(getselectedcount(FieldName)>0,1,0)

this would hide the the table if there are values below 0.

Not sure what condition you want to set to hide the chart with 0 data.