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:

[TABLE="class: cms_table"]
<tbody>[TR]
[TD]Cur Ave
[/TD]
[TD]Gms
[/TD]
[TD]Total Pins
[/TD]
[TD="width: 38, bgcolor: transparent"]High Gm
[/TD]
[TD="width: 47, bgcolor: transparent"]High Series
[/TD]
[TD="width: 38, bgcolor: transparent"]Ent. Ave
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]201
[/TD]
[TD="bgcolor: transparent"]4
[/TD]
[TD="bgcolor: transparent"]804
[/TD]
[TD="bgcolor: transparent"]217
[/TD]
[TD="bgcolor: transparent"]804
[/TD]
[TD="bgcolor: transparent"]227
[/TD]
[/TR]
</tbody>[/TABLE]

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

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
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,224,820
Messages
6,181,159
Members
453,021
Latest member
Justyna P

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