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: 
hkg_qlik
Creator III
Creator III

Loading

Hi,

I want to load records from a table when a particular field is empty/null/no value.

I have a qvd file which is a source for this load.

Customer:

Load

Name,

Cust_ID,

Address

.

.

.

From

Customer.qvd(qvd);

I want to load only those records with CustID is null/blank?

Regards,

H

1 Solution

Accepted Solutions
MayilVahanan

HI

Customer:

Load

Name,

Cust_ID,

Address

.

.

.

From

Customer.qvd(qvd) where Len(Trim(Cust_ID)) = 0;

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

HI

Customer:

Load

Name,

Cust_ID,

Address

.

.

.

From

Customer.qvd(qvd) where Len(Trim(Cust_ID)) = 0;

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.