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: 
anuhegde
Contributor III
Contributor III

Null rows in qlik sense

Hi Team,

Below is the data I have in qliksense.

BrNo, ICNo,Amount

<Null>, <Null>, 100

<Null>, <Null>, 200

<Null>, <Null>, 300

<Null>, <Null>, 400

123,        456,     500
789,        102,     600

 

The output I need is

BrNo,Amount

<dummy value1>, ,100

<dummy value2>, 200

<dummy value3>, 300

<dummy value4>, 400

123,        456,     500
789,        102,     600

Could you please help?

 

Thank you

Anusha

Labels (4)
1 Reply
anat
Master
Master

     If(len(trim(MyField))=0, autonumber(rand()),MyField) as MyField1