we will call the number Quantity
to display quantity as millions, we can do:
set text to: int(Quantity/(10^6)) &" Millions"
if quantity is 39 673 829 , it will display as 39 Millions
Perfect!
And do you have an idea how I could add commas to my int variables? Say 153000 is displayed as 153.000 instead?