Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a column that has "1" and "-" as values. I would like to replace the "-" as "0". How would that look like in the data load editor? Thank you!
This is the example:
Lines Quoted
1
-
-
-
1
-
When loading this field: Replace([Lines Quoted], '-', 0) as [Lines Quoted]
Hi, thanks for your help. I think they are non-null values. How do I replace them?
In other words, if its not a "1", replace as "0".
If([Lines Quoted] = 1, 1, 0)
if you are trying to replace nulls you can use alt() or newer versions of qliksense have coalesce().