Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
jacek_k
Contributor III
Contributor III

Format string to number

Script:

pick(WildMatch(currency,'XX'),'0.099') as Value,

Later, when I want use that column a do some calculation - a see 0.099 but qlik change number to 99.

I try num:

num(pick(WildMatch(currency,'XX'),'0.099')), num# etc

Labels (1)
1 Reply
rubenmarin

Hi, have you tried without the simple quotes in number?: pick(WildMatch(currency,'XX'),0.099) as Value,