Difference between two numbers

P

Pam

I have two columns, each with numbers in them. All I want to do if find the
difference between these two numbers. Don't want whether negative or positive
-- just the difference. Is this possible?
 
G

Glenn

Pam said:
I have two columns, each with numbers in them. All I want to do if find the
difference between these two numbers. Don't want whether negative or positive
-- just the difference. Is this possible?


=ABS(B1-A1)
 
Top