Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Pooja_D
Partner - Contributor III
Partner - Contributor III

How to convert dash value into zero value

Hello All,

 I want to replace null, '-' Value with 0 (Numeric Zero) by Script level or sheet level.

I tried below syntax,

 If (isnull(YourExpression),0,YourExpression)

but it's not working.

Kindly suggest.

 

Thanks,

Pooja

Labels (1)
1 Reply
agigliotti
Partner - Champion
Partner - Champion

Hi @Pooja_D ,

You can use:

Alt( YourExpression, 0 )

I hope it can help.

Best Regards