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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
karan_kn
Creator II
Creator II

Help me to fix null value in Straight table

Please help me to fix null value. Attached QVW and excel for your reference.

null.JPG

1 Solution

Accepted Solutions
sunny_talwar

May be using this

=If(ID = Above(TOTAL ID), Null(), Name)

Capture.PNG

View solution in original post

2 Replies
sunny_talwar

May be using this

=If(ID = Above(TOTAL ID), Null(), Name)

Capture.PNG

vishsaggi
Champion III
Champion III

may be another way like

Table:
LOAD *
WHERE DupId = 1;
LOAD ID,
IF(ID = Previous(ID), 0, 1) AS DupId,
Name,
Country
FROM
TestNull.xlsx
(
ooxml, embedded labels, table is Sheet1);