Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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
Partner - Master

Hi, like this.

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