Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hey there,
Try this expression:
='Amount of Cases - ' & Num(1948738 ,'#.##0', ',', '.')
Best regards,
D.A. MB
Hi Monique
='Amount of Cases - ' & Num(sum(PL_Nr_Of_Cases),'#.##0')
Regards,
Antonio
Hi,
try this:
='Amount of Cases - ' & num(sum(PL_Nr_Of_Cases),'#,##0')
Thanks!
Hey there,
Try this expression:
='Amount of Cases - ' & Num(1948738 ,'#.##0', ',', '.')
Best regards,
D.A. MB
This works perfectly, thanks guys