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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
marcvw
Partner - Contributor III
Partner - Contributor III

Data with 'NULL' values not visible

Good Day, 

I have a table with raw data that contains 'NULL' values and a value like '5', '10'. See enclosed file. 

How can I enable that Qlik sense will demonstrate all values in a table? 

Appreciate your support in here. 

Regards, 

 

Labels (3)
1 Solution

Accepted Solutions
BrunPierre
Partner - Master II
Partner - Master II

To display duplicates, you must create a unique row identifier with either of these RowNo() or Recno().

Something like this;

LOAD RowNo() as R#,
id,
Coalesce(value,'Null') as value
FROM ...

View solution in original post

1 Reply
BrunPierre
Partner - Master II
Partner - Master II

To display duplicates, you must create a unique row identifier with either of these RowNo() or Recno().

Something like this;

LOAD RowNo() as R#,
id,
Coalesce(value,'Null') as value
FROM ...