I have a column of 32 numbers,

S

Skip

some negative, some positive. They are paired. I have 16 pair. I
neeId help with a formula that will give me the
difference between the two numbers.
4
-11 I need a total of 15

-10
2 I need a total of 12. Thanks in advance
for any assistance.
 
P

Pete_UK

Assuming your data starts in A1, put this in B2:

=IF(MOD(ROW(A1),2)=0,"",ABS(A2-A1))

and copy down as far as required.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top