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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
risabhroy_03
Partner - Creator II
Partner - Creator II

Formatting using Num

I have a field whose value is coming as 0.87141564455678.

I want to show it as 88% in the front end but I want to do the calculation on the data load editor.

Please help.

Labels (4)
2 Replies
Or
MVP
MVP

Dual(Ceil(Value,0.01),Value) perhaps? It doesn't matter if you use it on the front end or in data load, it'd still be the same syntax.

 

AronC
Partner - Creator II
Partner - Creator II

Just use the num-function. For % just use the code below in your load script. Num function works the same in script and front end.

Load

num(FieldName,'0%') as FieldNameFormatted

....

 

https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/FormattingFunc...