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: 
qlikviewforum
Creator II
Creator II

How to show table if the NoOfRows > 0

Hi

Imagine if I have to tables in my application. I want to show those tables on if the NoOfRows > 0. If the NoOfRows < 0 then it should be hidden. Can someone please help me out on how to achieve this?

Thanks,
qvforum

2 Replies
Not applicable

try using a conditional show of the object with:

=count(distinct all YourField)>0

or

=GetPossibleCount(YourField)

Hope this help

Anonymous
Not applicable

LOAD C!,

C2

FROM Table

where NoofRows > 5