Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Separate numbers with quotes (number formatting)

Hello,

I would like to display the numbers like this:

1000 ==> 1'000

11'000 ==> 11'000

1000000 ==> 1'000'000

I've tried with the num function but without success. Can anyone help me ? Thanks!

1 Solution

Accepted Solutions
Not applicable
Author

=num(1000000000, '#'&chr(39)&'###.00','.' , chr(39))

Result: 100'00'00'000.00

View solution in original post

2 Replies
Sokkorn
Master
Master

Hi,

For me, first we need to formate number into 1,000,000.00 then replace <,> to <'>. Somthing like this =REPLACE(NUM('1000000','###,###.#0'),',',CHR(39))

Untitled.jpg

Regards,

Sokkorn

Not applicable
Author

=num(1000000000, '#'&chr(39)&'###.00','.' , chr(39))

Result: 100'00'00'000.00