Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: 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);