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

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
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,642
Messages
6,120,700
Members
448,979
Latest member
DET4492

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