Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
vvira1316
Specialist II
Specialist II

How to selectively remove a record having a field with null value in a chart. Not to be done during load.

Here is one more question that I’m hoping someone may provide me some ideas / suggestions…

This is from the quartile table where HH Index has numeric value and some null values. We don’t want to take null
records into account in certain display while they have to be used in other visuals.

Due to their selective visualization in different scenarios I’m unable to exclude them during load. So is there any
other way I can achieve that.

NullInfo.jpg


Some more information on steps I have tried

based on requirement I've upper and lower value for HH Index that are received using Input Box variables.

With set modifier I'm able to change the set with value entered in the expression but unable to use variable as can be seen from attached screen shots.

HandlingNull.JPG.jpgHandlingNull_2.JPG.jpg

HandlingNull_5.JPG.jpg

HandlingNull_4.JPG.jpg
HandlingNull_3.JPG.jpg

Variables are vHHIndex_UB and vHHIndex_LB

I've tried following

Sum({<hh_index = {'116.00'}>} dollar_sales_total) (changed 116 to 165 for screen shot of 165, changed to '116', '165' for one with both values.

//Sum({$<hh_index = {'<=(=vHHIndex_UB)'}>} dollar_sales_total (This one is not working)

6 Replies
Not applicable

Hi Vijay

Enter the property of chart presentation tab and check the option to hide missing values

best regards.

vvira1316
Specialist II
Specialist II
Author


Hi Claudio,

Thanks for your reply. I'm doing quartile calculations on the set. If I suppress that way then information quartile is not right as records are still part of the set but only hidden to user. I need to have them removed from the set but still available during the load process but not available during selection for the set.

I hope it makes sense.

Thanks & Regards,

Vijay

Not applicable

Hi Vijay

can you post the full set analysis  that calculates this value?

nizamsha
Specialist II
Specialist II

=IF(Len(Trim(value))>1,value)

nizamsha
Specialist II
Specialist II

IF(Len(Trim( value))>1 OR IsNull(value),value)

Not applicable

Nizam,

High_ .. the field contains the word "Null" or has null value, the first option to change the expression IF (Len (Trim (value))> 1 OR value <> 'Null' value)