Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Suppress Blank Fields

Hello -

I have a field, age, for which each record either has a range 'Age 18-19' or is blank. How can I, in a chart, display only the fields that have a value in this field.

Thank you.

1 Solution

Accepted Solutions
its_anandrjs

Hi,

If you have requires only to load rows which is not null then use this

=If(len(DimensionName) > 0, DimensionName)

Or if both then

=If(len(DimensionName) > 0, DimensionName, NULL( ) )

Regards

Anand

View solution in original post

3 Replies
its_anandrjs

Hi,

You can try with

=If(len(DimensionName) > 0 DimensionName)

And click on the suppress when value is null option in the chart properties

Regards

Anand

Anonymous
Not applicable

if(len([Field name])>0,Nul(),[Field name]) should work.

its_anandrjs

Hi,

If you have requires only to load rows which is not null then use this

=If(len(DimensionName) > 0, DimensionName)

Or if both then

=If(len(DimensionName) > 0, DimensionName, NULL( ) )

Regards

Anand