Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all -
I need to remove Null data at the loading stage, I have been asked to do this in the script using "Where" clause and "Isnotnull"
I just cannot seem to get the scripting right so would really appreciate any help. We basically want any Null data from our [Site Acceptable] field to be ignored when loading as it is affecting results across the dashboard.
May be try this
LOAD ... FROM ... Where Len(Trim([Site Acceptable])) > 0;
The QV syntax is
WHERE NOT ISNULL(yourfield)
Without seeing the script it is hard to tell why it fails. Another thing that comes to my mind is "timing". Let's say that your dataset is the result of a qlikview left join. You cannot put there where not isnull() clause in the left join, it will not work because at the joining stage the nulls don't exists yet. If this is the case then either a preceding load or new table would be necessary.