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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

how to remove rows

Hi all i have a field name product

data like

-

baby

200

350

-

-

-

how to remove empty rows

Labels (1)
2 Replies
sunny_talwar
MVP
MVP

May be use Where function

LOAD ...

FROM ..

Where Len(Trim(product)) > 0;

BalaBhaskar_Qlik
Master
Master

Product:

Load

ProductID,

Len(Trim(Product)) > 0 as Product,

ProductGroup

from Product

group by ProductID;

Or

Product:

Load

Product,

ProductGroup

From Product where Len(Trim(Product)) > 0;