Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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?

1 Solution

Accepted Solutions
robert_mika
Master III
Master III

try:

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

View solution in original post

1 Reply
robert_mika
Master III
Master III

try:

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