Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Samanehsorournejad

QlikSense shows Zero as -

Hi everyone,
I'm in the Process Migration from QlikView to QlikSense, I have the App with this Measure :
if(Count({$ <Ereignisart=
//,KuhVisionEnde={"nein"}
>}KV_GESUNDDIAGNOSE.ID)=0,'xxx',Date(max({$ <Ereignisart={'GESUNDDIAGNOSE'},KuhVisionEnde={"nein"}>}%Datum),'DD.MM.YYYY'))
it shows me 0 in QlikView but in the same Column in Qlik Sense it shows me '-'.

is there anyone who could help me to know why QlikSense shows me - instead of zero?

Thanks in Advanced

QlikViewQlikViewQlikSenseQlikSense

 

Labels (3)
6 Replies
neerajthakur
Creator III
Creator III

It does not convert null to zero itself. You can use coalesce function for it in editor.

Thanks & Regards,
Please Accepts as Solution if it solves your query.
Samanehsorournejad
Author

it is not null, but missing Value.

Hi every one,

is there any person who knows how to replace missing Value in QlikSense with the spacial Character or symbol

neerajthakur
Creator III
Creator III

Define missing value.

 

Use if(len(expression)<0,0)

Thanks & Regards,
Please Accepts as Solution if it solves your query.
Aditya_Chitale
Specialist
Specialist

@Samanehsorournejad 

try this: 

=if(isnull(measure),'0',measure)

Regards,

Aditya

neerajthakur
Creator III
Creator III

He's saying it's not null values.

Thanks & Regards,
Please Accepts as Solution if it solves your query.
Clever_Anjos
Employee
Employee

try the coalesce() function to replace nulls with 0´s