Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Check if the filters return null

Hi All,

I am working on exporting few things from qlikview to PPT.

In order to achieve that I am using Macros.

One of things I am doing is filtering using following instruction:

Activedocument.fields("Country").select "United Kingdom"

It might be though that none of rows in the table I am filtering is meeting that criteria - is there any way of checking if the above instruction returns no rows?

Would appreciate any help

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

set val=ActiveDocument.Fields("Country").GetPossibleValues


now val.Count is the number of possible values

View solution in original post

1 Reply
m_woolf
Master II
Master II

set val=ActiveDocument.Fields("Country").GetPossibleValues


now val.Count is the number of possible values