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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
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
MVP
MVP

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