Kyle Meyer writes:

> Here's what org-table-sum does underneath:
>
>   (apply #'+
>          (list 171.0 4.07 4.44 2.61 12.21 6.69 19.72 23.09 6.23 15.28 78.85))
>   ;; => 1094.1899999999998

Sorry, I pasted the wrong snippet (that one above has some numbers
pruned and returns "344.18999999999994").  Here's the snippet that would
match the your table:

  (apply #'+ (list 171.0 4.07 4.44 2.61 12.21 6.69 19.72 23.09 6.23
                   15.28 250.0 250.0 250.0 78.85))

Reply via email to