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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Format of textbox

Hi all,

I am using a textbox for showing results (number).

Is it possible to change the format of the numbers.

I would like to have a separator and the € in the number like:

23000 => 23.000€

Is this possible?

Thank for helping!


1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try num(23000, '#.##0€')

num( 23000, '#.##0€',',','.') if you need to override the document settings for decimal and thousands separators


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Try num(23000, '#.##0€')

num( 23000, '#.##0€',',','.') if you need to override the document settings for decimal and thousands separators


talk is cheap, supply exceeds demand
Not applicable
Author

Yes

Num(YourNumber, '00.000€')

Anonymous
Not applicable
Author

GREAT! Thank you