RAWSUBTRACT
Subtracts a set of numbers and gives the result without eliminating small roundoff errors.
RAWSUBTRACT(Minuend, Subtrahend1, Subtrahend2, ...)
Subtracts the subtrahend(s) from the minuend without eliminating roundoff errors. The function should be called with at least two parameters.
「RAWSUBTRACT(0.987654321098765, 0.9876543210987)」返回 6.53921361504217E-14
「RAWSUBTRACT(0.987654321098765)」返回 Err:511 (缺少变量) 因为 RAWSUBTRACT 要求至少两个数字。