MattHardy1
5 years agoQrew Trainee
Losing Number Format in Rich Text Formula
I found a few references to my issue in old posts but the links all seem to be dead.
I'm trying to display the value of a currency field [PO Subtotal] in a rich text formula field. The number displays but drops the number formatting I have setup on the [PO Subtotal] field, leaving me with either 1 or no decimal points depending on the situation. How can I force two decimal points in a rich text formula field? [PO Subtotal] displays with 2 decimal points outside this rich text field.
I feel like I'm missing something simple but after checking the display options for every field involved in this, I'm out of ideas and above all frustrated when all the (seemingly) relevant QB Community links are broken.
Below is the entire code from the rich text formula field.
------------------------------
Matt Hardy
------------------------------
I'm trying to display the value of a currency field [PO Subtotal] in a rich text formula field. The number displays but drops the number formatting I have setup on the [PO Subtotal] field, leaving me with either 1 or no decimal points depending on the situation. How can I force two decimal points in a rich text formula field? [PO Subtotal] displays with 2 decimal points outside this rich text field.
I feel like I'm missing something simple but after checking the display options for every field involved in this, I'm out of ideas and above all frustrated when all the (seemingly) relevant QB Community links are broken.
Below is the entire code from the rich text formula field.
"
<table align=\"right\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"width:820px;\">
<tbody>
<tr>
<td style=\"width: 70%;\"> </td>
<td style=\"text-align: right;\">
<p>Subtotal</p>
<p>HST (13%)</p>
<p>Invoice Total</p>
<p>Total Payments</p>
<p>Balance Due</p></td>
<td>
<p style=\"text-align: right;\">" & [PO Subtotal] & "</p>
<p style=\"text-align: right;\">" & [Tax] & "</p>
<p style=\"text-align: right;\">" & [Total] & "</p>
<p style=\"text-align: right;\">" & [Total Payments] & "</p>
<p style=\"text-align: right;\">" & [Balance] & "</p>
</td>
</tr>
</tbody>
</table>
"
------------------------------
Matt Hardy
------------------------------