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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Lucky1
Creator
Creator

How to exclude valuesbefore loading data

Hi

i have a table i want to exclude if name and status have nulls.

 

Lucky1_0-1685094041202.png

 

I

i want output like

Lucky1_3-1685093949524.png

 

 

 

Labels (3)
2 Replies
Kushal_Chawda

@Lucky1  try below

LOAD ID,
     Name,
     Status
FROM Table
where len(trim(Name))<>0 or len(trim(Status))<>0
BrunPierre
Partner - Master II
Partner - Master II

Hi, like this.

LOAD ...
FROM SourceTable
Where Len(Trim(Name&Status));