Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a text object in which I would like to display the following:
Total: ##,###
How would I format the expression. I tried ' Total ' & =sum(twnow+fbnow+innow) but received an error
Hi,
Maybe: ='Total: ' & sum(twnow+fbnow+innow)
Saludos.
Try this: = 'Total ' & num(sum(twnow+fbnow+innow), '##,###')
- Marcus
Thank you
Thank you, this work perfectly