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: 
arsenal1983
Creator
Creator

NULL vs SPACE

Hello, I would like to create column in loading script base on the source column. My new column should be a flag:

if (isnull(SOURCE), 1, 0)

The problem is that in source data sometimes I have null but sometimes it is space or even several spaces. I tried with TRIM function:

if(isnull(trim(SOURCE)), 1, 0)

but it did not work.

Could you help me please?

Labels (1)
1 Solution

Accepted Solutions
robert_mika
MVP
MVP

try:

if(Len(TRIM((SOURCE))=0....

View solution in original post

1 Reply
robert_mika
MVP
MVP

try:

if(Len(TRIM((SOURCE))=0....