Help with formula to add addtional rules. IF formula

MattGee

New Member
Joined
May 31, 2018
Messages
3
I’m trying to come up with a formula to handle multiple situations.
Current formula: =IF(Indiv!C5<8,Indiv!G5,Indiv!B5). current formula will return “227” with example below:

Cur Ave
Gms
Total Pins
High Gm
High Series
Ent. Ave
201
4
804
217
804
227

<tbody>
</tbody>

C5 = #Games, G5 = Entering average, B5 = Current Average

Additionally, I need to have the formula recognize if the # of game is greater than 8 and the Current Average is more than 10 pins below the entering average, use the Entering average minus 10.

When the above is true the return value would be “217”

Thanks for any help you can provide.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Welcome to the Board!

Try this:
Code:
=IF(AND([COLOR=#333333]Indiv!C5>8,[/COLOR][COLOR=#333333]Indiv!B5+10<[/COLOR][COLOR=#333333]Indiv!G5),[/COLOR][COLOR=#333333]Indiv!G5-10,[/COLOR][COLOR=#333333]IF(Indiv!C5<8,Indiv!G5,Indiv!B5))[/COLOR]
 
Upvote 0
Thank you for the assistance, this worked. modified a few things but it worked. I appreciate the help.
 
Upvote 0

Forum statistics

Threads
1,216,748
Messages
6,132,492
Members
449,730
Latest member
SeanHT

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