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: 
amber2000
Creator
Creator

Format value in a text object

Hi,

I would like to format a value in a text object:

The value looks like this: 1948738 and I want it to be 1.948.738

This is what I set in the General Tab in Text:

='Amount of Cases - ' & sum(PL_Nr_Of_Cases)

Does anyone has an idea on how I can do that please?

Kind regards,

Monique

1 Solution

Accepted Solutions
miguelbraga
Partner - Specialist III
Partner - Specialist III

Hey there,

Try this expression:

='Amount of Cases - ' & Num(1948738 ,'#.##0', ',', '.')

Best regards,

D.A. MB

View solution in original post

4 Replies
antoniotiman
Master III
Master III

Hi Monique

='Amount of Cases - ' & Num(sum(PL_Nr_Of_Cases),'#.##0')

Regards,

Antonio

Not applicable

Hi,

try this:

='Amount of Cases - ' & num(sum(PL_Nr_Of_Cases),'#,##0')

Thanks!

miguelbraga
Partner - Specialist III
Partner - Specialist III

Hey there,

Try this expression:

='Amount of Cases - ' & Num(1948738 ,'#.##0', ',', '.')

Best regards,

D.A. MB

amber2000
Creator
Creator
Author

This works perfectly, thanks guys