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: 
Anonymous
Not applicable

Is null Function

hi ,

i am using Qlik sense desktop and i want to use is null function i wrote below function and it works but does not return what i want  :

If(IsNull("Survey Completed Date"),'non surved',If(IsNull("Survey Completed Date"),'surved')) as Survey completed date1

3 Replies
arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Ibrahibra,

I will do in this way:

If(isnull("Survey Completed Date"),'Non Surved',"Survey Completed Date") as [Survey completed date1]


Thanks,

Arvind patil

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

It should be

If(IsNull("Survey Completed Date"),'non surved','surved') as Survey


Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
sunny_talwar

Or may be this if there might be white space

If(Len(Trim([Survey Completed Date])) = 0, 'non surved', 'surved') as [SurveyFlag]