Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
grajmca_sgp123
Creator
Creator

How to display null Value in bottom of the Pivot Table

Dear All

I need to display the null value in the bottom of the pivot table ,I have tried out the sorting option but it is not working ,kindly help me out on this !!

Current result

grajesh_sgp_0-1689229264619.png

 

Labels (1)
1 Solution

Accepted Solutions
grajmca_sgp123
Creator
Creator
Author

 

here is the solution .

I have updated Dimension to: =if(IsNull(L1_OFB), '-', L1_OFB)

and Sort by expression =if(IsNull(L1_OFB), '-', L1_OFB)- descending 

View solution in original post

3 Replies
tealowk
Partner - Contributor III
Partner - Contributor III

Hi Grajesh,

based on the information provided in your post I'd suggest that you add the following two lines to the beginning of your load script:

NullAsValue MyField;
Set NullValue = '99. Others';

This way, the Null values in the field MyField (replace by your field name) are displayed as '99. Others' and can thus be used for sorting.

Hope that helps.

Kind regards from Brussels,

Thilo

udit_k
Partner - Creator II
Partner - Creator II

udit_k_0-1689237708573.png

 

grajmca_sgp123
Creator
Creator
Author

 

here is the solution .

I have updated Dimension to: =if(IsNull(L1_OFB), '-', L1_OFB)

and Sort by expression =if(IsNull(L1_OFB), '-', L1_OFB)- descending