nested IF's or AND's-PROBLEM SOLVED-THANKS EVERYONE

underpar

New Member
Joined
Jan 26, 2005
Messages
16
Office Version
  1. 2019
Platform
  1. Windows
Hi There:
Could someone give me some help in writing a formula that has several IF statements? H10, K10 and L10 are cells.

Here is what I'm trying to do:
IF H10<105% then 0
If H10>=105% AND k10=no then L10 X .02
IF H10 >=105% AND k10=yes then L10 X .04

Does anyone have a solution? I'd appreciate it.
Many thanks,
Mike
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
What happens if K10 = neither "yes" nor "no" or will K10 always equal "yes" or "no"?

The following assumes that K10 must be either "yes" or "no"...

=IF(H10<1.05,0,L10*IF(LOWER(K10)="no",0.02,0.04))
 
Upvote 0
Re: nested IF's or AND's

Try this:

=IF(H10<1.05,0,L10*IF(K10="no",.02,.04))

Oh, and welcome to the forum.
 
Upvote 0

Forum statistics

Threads
1,214,927
Messages
6,122,309
Members
449,080
Latest member
jmsotelo

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