Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi im pulling data from an excel spreadsheet. the columns have a =if(cell="","",cell) which when loaded into qlikview produces null values. is there a way to remove these in the script?
You can add a where clause to the load statement:
Load ... From File.xls (biff, ...) Where Len(Trim(Field)) > 0 ;
HIC
You can add a where clause to the load statement:
Load ... From File.xls (biff, ...) Where Len(Trim(Field)) > 0 ;
HIC
Hi,
use
where
len(field)>0
if(Len(Trim(Field)) > 0,cell,' ')
in if condition write this way
if(Len(Trim(cell)) > 0,cell) as CellField
Thanks Guys youve all been a massive help
Use this
len(field)>0
Dear Samuel,
Use following Where condition it works.
From................................
Where IsNull(Field)=0;
Regards,
Kiran Rode
+91 897 6977897