Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
nickmarlborough
Contributor III
Contributor III

Trying to add values to Null

Hi, 

I have many cases in my data where the question asked essentially is: 

if value () doesnt appear // does appear in this table then 'Yes' else 'No'

this simple formula is proving very challenging to do without creating synthetic keys. 

Is there an easy one line formula you are able to slot into the actual table in the load editor that would solve this. For example:

Load

*,

If......'yes','no

from File

 

Please help 

Labels (1)
1 Reply
henrikalmen
Specialist
Specialist

You could try
    if(len([MyField])=0, 'yes', 'no')
or
   if(isnull([MyField)], 'yes', 'no')