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

Retain fixed columns in a table with NULL records

Using NULLASVALUE didn't seem to fix the below issue. Any suggestions, please? Attached is the sample qvw.

Current dataset:

Current dataset after applying filter:

Expected dataset after applying filter (Low and High columns should retain their values)

 

LowHighPolicyAmount
50100290
1005005450
5001000
1 Solution

Accepted Solutions
sunny_talwar

Try this

=count(Policy) + Sum({1} 0)

= sum(Amount) + Sum({1} 0)


Capture.PNG

View solution in original post

2 Replies
sunny_talwar

Try this

=count(Policy) + Sum({1} 0)

= sum(Amount) + Sum({1} 0)


Capture.PNG

newqlik2017
Creator II
Creator II
Author

Nice, thank you.