Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Garbage after statement

It shows "Garbage after statement" when I run:

LOAD @7 as A,
@8 as B
FROM
[E&D final data_JL.xls]
(biff, no labels, table is [Q1 label$])
WHERE @7 is not null;

But it runs OK when I remove "WHERE @7 is not null".

3 Replies
Not applicable
Author

Hi

Can u please send me the excel file and and your expected output on any excel file?

thanks

zaman

Not applicable
Author

Try adding parenthesis in the WHERE... and using isNull()=0

WHERE (isNull(@7)=0)


Not applicable
Author

Hi,

Try below one.

Where Len(@7)>0;

-Sridhar