Tricky IF AND Conditional Formula Help

Dexter11

New Member
Joined
Jun 30, 2011
Messages
9
I am perplexed on how to write an IF formula for the following two conditions:

if amount in column A is over/under $10K and 10% in Var% column B, insert a "B" in column F
OR if column A is over/under $25K, insert a "B" in column F

I think one big confusion for me is how to write the condition of the over/under dollar amounts and percentages, i.e. over
$10,000 or < ($10,000) AND if column C percentage is > 10% or < (10%)

I'm still learning how to write complex formulas but I'm really stumped with getting this one to work.

Can anyone help guide me in the right direction?
 
ABS() takes the absolute value of the bracketed expression. That is the numerical value ignoring the sign. So, -10000 and +10000 will both be evaluated as +10000.
 
Upvote 0

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
So effectively, ABS(value)>10 is the same as saying OR(value > 10, value < -10). It's mostly a matter of convenience and ease of reading.
 
Upvote 0

Forum statistics

Threads
1,225,155
Messages
6,183,215
Members
453,151
Latest member
Lizamaison

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