if(and(or...issue

bluepenink

Well-known Member
Joined
Dec 21, 2010
Messages
585
Hello

having some logic placement issue with my formula.

basically, here is the scenario.

=IF(D53=$E$53,"-",D53-D46)

where D53 = 50%
E53 = "MAX"
D46 = 80%

=IF(AND(D53=$E$53,D53>D46),"-",D53-D46)

in the example above, d53-d46 = -30%, so, i want to be able to say,
if D46 is > D53, then make it, D46-D53, while also, keeping the original formula D53=$E$53,"-",

can someone pls help!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
First question
D53 will never = E53 while E53 is text.
E53 needs to be a numerical value for this to work.
If that can be rectified, I think you need
Code:
=IF(AND(D53=$E$53,D53>D46),"-",IF(AND(D53=$E$53,D46>D53),D46-D53,D53-D46))
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,291
Members
452,902
Latest member
Knuddeluff

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