0

Adjust to two decimal places.

<th style = text-align:center scope='colgroup' colspan='3' >∑ Total Price = " +
    sum(myObject.price) +
    "</th>

How can I adjust this formula to only two decimal places ?

4 Antworten

null
    • + Maßanzug statt Massenware +
    • RonaldP
    • vor 1 Jahr
    • Gemeldet - anzeigen

    Hi ,

    it is simlar to excel:

    Round(sum(xy),2)

      • Rafael_Sanchis
      • vor 1 Jahr
      • Gemeldet - anzeigen

       

      <th style = text-align:center scope='colgroup' colspan='3' >∑ Total Price = " +
          round(sum(myObject.price),2) +

      But give a error 

      • Rafael_Sanchis
      • vor 1 Jahr
      • Gemeldet - anzeigen

       now works Thanks

      round(sum(myObject.number(price)), 2) +

      • + Maßanzug statt Massenware +
      • RonaldP
      • vor 1 Jahr
      • Gemeldet - anzeigen

       👍