Another Formula with Multiple Conditions

gidget424

New Member
Joined
Nov 22, 2005
Messages
10
I need help with a formula that has several conditions. I can't seem to get it to work. The conditions are:

IF(UPPER(B41)="x"
IF(S8:S13="x",0,"")
IF(C1<=3,C1*C41,"")
IF(C1>=4,45,"")

I keep getting a message that I have too many arguments.

HELP!!!
:confused:
 
I have 5 cells in a columns; S8:S13. If any one of these are marked with an "x", and B41 is also marked with an "X", then the amount in the cell that I am entering the formula in should default to 0
 
Upvote 0

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
that is what I figured, but didn't want to do any more presuming.

How about this:
=IF((B41)="X",IF((VLOOKUP("x",S8:S13,1,FALSE))="x",0,IF(C1<=3,(C1*C41),IF(C1>=4,45," ")))," ")
 
Upvote 0
That means that the Vlookup is failing to find the matching X. Try turning this into an If(iserror(vlookup (. . .)),nested if from other arguments, vlookup( . . .)

make sense?
 
Upvote 0
gidget424 said:
I have 5 cells in a columns; S8:S13. If any one of these are marked with an "x", and B41 is also marked with an "X", then the amount in the cell that I am entering the formula in should default to 0

=1-(B41="X")*ISNUMBER(MATCH("X",S8:S13,0))
 
Upvote 0

Forum statistics

Threads
1,215,601
Messages
6,125,758
Members
449,259
Latest member
rehanahmadawan

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