Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am having an issue with trying to get the format of my expression in the text object box to result in a dollar amount ($) opposed to a decimal.
Here is the expression I am using:
=Sum([Queried Fin.Impact]) + Num(Sum([Non Queried Fin. Impact])
The result is a decimal rather than a dollar amount.
Any help would be appreciated!
Thanks,
Erin
Use the Num() function but put it around the entire expression, not just the end part.
Like
=Num(Sum(...) + Sum(...), '$ #0.00')
Best,
Peter
Use the Num() function but put it around the entire expression, not just the end part.
Like
=Num(Sum(...) + Sum(...), '$ #0.00')
Best,
Peter
=Num(Sum([Queried Fin.Impact]) + Sum([Non Queried Fin. Impact]),'$#,##0.00')
Thank you both so much!