Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
KD_
Contributor III
Contributor III

Num() Formating

Hello Qlik world. I am trying to understand what the purpose of dec_sep & the thou_sep is in the function syntax: Num(number[, format[, dec_sep [, thou_sep]]]). I have looked everywhere and cannot find where it is clearly explained. Thanks in advance.

1 Solution

Accepted Solutions
KD_
Contributor III
Contributor III
Author

Thank you, I get it now.

View solution in original post

2 Replies
Vegar
MVP
MVP

Let me try to explain using an example. (Image is from QlikView, but Qlik Sense handle this in the same manner). If you need other separators than the default ones defined by variables ThousandSep and DecimalSep in the script then you need to set these explicit in the num() expression.

Please review image below where I've used num(Num, '# ##0,0') when format is using the default separators, but if I need other separators I need to define them as in the expression to the right num(Num, '#|||##0:::0', ':::', '|||') where I want to use ':::' as decimal separator and '|||' as thousand separator.  

Vegar_0-1701497866668.png

 

KD_
Contributor III
Contributor III
Author

Thank you, I get it now.