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

Oracle NVL function in QLik

Hello There,

what is the equivalent of this Oracle script

nvl((Field_C + Field_B),0)||' Yrs '||nvl((Field_D + Field_E),0) ||' Mnts' "Total Work" to Qlikview?

Any suggestions will be much appreciated!

Best Regards,

Bing

Labels (1)
1 Solution

Accepted Solutions
ngioux
Partner - Contributor II
Partner - Contributor II

Hello,

 

I think the equivalent in Qlik will be:

Alt(([Field_C] + [Field_B]), 0) & ' Yrs ' & alt(([Field_D] + [Field_E]), 0) & ' Mnts' as [Total Work]

 

Hope this helps you.

Best Regards,

Nicolas


View solution in original post

2 Replies
ngioux
Partner - Contributor II
Partner - Contributor II

Hello,

 

I think the equivalent in Qlik will be:

Alt(([Field_C] + [Field_B]), 0) & ' Yrs ' & alt(([Field_D] + [Field_E]), 0) & ' Mnts' as [Total Work]

 

Hope this helps you.

Best Regards,

Nicolas


bsbernabe
Creator
Creator
Author

Thank you so much its great now is working....