help on If formula

aravindhan_31

Well-known Member
Joined
Apr 11, 2006
Messages
672
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi,

I need help on If formula

If the difference between Cell A1 and B1 is 200, then value in C1 should be 0 or else 1

Cell A1 Cell B1 Cell C1
200 400 0
400 200 0
-200 400 0
200 600 1

I dont know how to give formula to find the difference.I cant use this formula =If(B1-A1=200,'0','1') or If(a1-b1=200,'0','1'). this will give me the result and not the difference.


regards
Arvind
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
not sure whether you mean abs difference ?

C1 =IF(ABS(A1-B1)=200,0,1)

if you need to ABS both A1 + B1 (ie -200-400 = 200 (?)) then

C1 = IF(ABS(ABS(A1)-ABS(B1))=200,0,1)
 
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,466
Members
449,086
Latest member
kwindels

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top