R
Raymond
what is the syntax for a subtract function? For example, the syntax for the
sum function looks like this: =sum()
Thanks
sum function looks like this: =sum()
Thanks
sum function looks like this: =sum()
SUM(A1:B1) adds the value in B1 to that in A1.
I think he wants to *subtract* B1 from A1, i.e. =A1-B1, or =A1+(-B1), which is
not the same as -SUM(A1:B1).