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

Announcements
Qlik Unveils New Agentic Capabilities Across Analytics, Data Engineering, and Trust: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Satish8
Contributor
Contributor

Num formate..

Hi All,

num(Sum(Sales),'# ##0,00', ',' ,' ') Here I'm using this num format value this one 14 758,22 but requirement

14 758 22 remove comma (,) . Here separate decimal and thousands space

Labels (1)
2 Replies
marcus_sommer

AFAIK must the separators for thousands and decimal be different. But there are various white-space chars available which may added like:

= num(14758.22, '# ##0' & chr(160) & '00', chr(160), ' ')

Vegar
MVP
MVP

You could just multiple your sum by 10 and skip the decimals completly.

num(Sum(Sales)*10,'# ##0')