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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QlikView AccessPoint: How to return specific set of records onlyi

How to return only specific set of records say for example only blank values for the column? What should be the syntax for expression? Thanks

1 Solution

Accepted Solutions
devarasu07
Master II
Master II

Hi,

Let's you have dimension as Country with null and Sales Value.

to display only null country sales then  u can try like this

2) Using Calculated Country Dimension: // suppress null value on this cal.dimension

if( len(trim(Country))=0, Country,0) 

and Measure as Sum(Sales)

2) Using Set analysis method,

sum( {<Country={"=len(trim(Country))=0"}>} Sales)


3) using back end script,

load * from fact where len(trim(Country))=0;


Thanks,

Deva

View solution in original post

1 Reply
devarasu07
Master II
Master II

Hi,

Let's you have dimension as Country with null and Sales Value.

to display only null country sales then  u can try like this

2) Using Calculated Country Dimension: // suppress null value on this cal.dimension

if( len(trim(Country))=0, Country,0) 

and Measure as Sum(Sales)

2) Using Set analysis method,

sum( {<Country={"=len(trim(Country))=0"}>} Sales)


3) using back end script,

load * from fact where len(trim(Country))=0;


Thanks,

Deva