Hi,
I have a helper column I am using to insert text into an email alert (the 2000 characters is not enough for my needs so I'm using several formulas to insert the data). Anyway, one of my columns is my "Header text" for the email and it includes the name of the person making the transaction, the transaction total, date of purchase, vendor, etc.
My issue is that the transaction total appears in my formula as the number, with no currency formatting (except for the decimal place). In the column, I have it formatted correctly using the column formatting functionality and it appears correctly in the column and in other places like reports.
Right now, I'm including a text "$" in front of the value in my formula but I can't figure out how to include the comma if the number is 1,000 or above.
This is my formula.
=JOIN("Hi Brian" + CHAR(10) + CHAR(10) + [Cardholder_First]@row + " " + [Cardholder_Last]@row) + " " + "has made a P-Card Transaction which needs your review." + CHAR(10) + CHAR(10) + "TRANSACTION TOTAL: " + "$" + [Transaction (Receipt) Total]@row + CHAR(10) + "DATE OF PURCHASE: " + [Date of Purchase]@row + CHAR(10) + "VENDOR: " + Vendor@row + CHAR(10) + "DATE OF PURCHASE: " + [Date of Purchase]@row
The [Transaction (Receipt) Total] is the value that I'm working with. It is input into the original form as an unformatted number, with only a decimal place for the cents. For example, an entry of $1,000.00 would be entered in as 1000.00
Is there a way to use a formula, maybe in a helper column, to format the number so it shows in my formula above as $1,000.00? As you can see, all I have is the "$", which works fine with numbers 999.99 and less. I am guessing its not a critical issue but for aesthetics, I'd like to see if i can resolve it.
This is what generates as part of the formula.
Thank you so much in advance, I appreciate all your thoughts and help!