Combinging IF Statements??

mcintoshmc

Active Member
Joined
Aug 10, 2007
Messages
277
I know there is any easier way of doing this by combing if(and(or statements, but I did it the long way. How can I combine all of these IF Statements to 1 formula?

IF((AND($A41=1,$B41=0,$C41=0,$D41=0,$F41=0,$G41=0,$H41=0,$I41=0,$J41=0)),"Step 1","")
IF((AND($A41=1,$B41=2,$C41=0,$D41=0,$F41=0,$G41=0,$H41=0,$I41=0,$J41=0)),"Step 2","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=0,$F41=0,$G41=0,$H41=0,$I41=0,$J41=0)),"Step 3","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=0,$G41=0,$H41=0,$I41=0,$J41=0)),"Step 4","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=0,$H41=0,$I41=0,$J41=0)),"Step 5","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=0,$I41=0,$J41=0)),"Step 6","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=7,$I41=0,$J41=0)),"Step 7","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=7,$I41=8,$J41=0)),"Step 8","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=7,$I41=8,$J41=9)),"Step 9","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=7,$I41=8,$J41=9,$K41=10)),"Step 10","")
IF((AND($A41=1,$B41=2,$C41=3,$D41=4,$F41=5,$G41=6,$H41=7,$I41=8,$J41=9,$K41=10,$L41="i9")),"Hired","")
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
I think this might work.

=IF(A41 <> 1, "", IF(MAX($A41:$K41) < 9, "Step " & MAX($A41:$K41), IF(AND(MAX($K41:$L41)=10, $L41="i9"), "Hired", "Step " & MAX(K41:L41))))
 
Upvote 0
Re: Combining IF Statements??

I think this might work.

=IF(A41 <> 1, "", IF(MAX($A41:$K41) < 9, "Step " & MAX($A41:$K41), IF(AND(MAX($K41:$L41)=10, $L41="i9"), "Hired", "Step " & MAX(K41:L41))))

That is amazing. I wish I could sit down with you and break down how that works. I'm definitely going to study it, and use a little google as well. Thanks!
 
Upvote 0
Re: Combining IF Statements??

Hi,

Would this modified shorter version of thisoldman's formula work as well (M41), and in case you have numbers in Column E that is irrelevant to the result and may "throw" the result off (N41):


Book1
ABCDEFGHIJKLMN
411000000000Step 1Step 1
421200000000Step 2Step 2
431234567890Step 9Step 9
4412345678910Step 10Step 10
4512345678910i9HiredHired
Sheet1
Cell Formulas
RangeFormula
M41=IF(A41<>1,"",IF(AND(MAX($A41:$K41)=10,$L41="i9"),"Hired","Step "&MAX($A41:$K41)))
N41=IF(A41<>1,"",IF(AND(MAX($A41:$D41,$F41:$K41)=10,$L41="i9"),"Hired","Step "&MAX($A41:$D41,$F41:$K41)))


Formulae copied down.
 
Upvote 0
Re: Combining IF Statements??

Hi,

Would this modified shorter version of thisoldman's formula work as well (M41), and in case you have numbers in Column E that is irrelevant to the result and may "throw" the result off (N41):


Book1
ABCDEFGHIJKLMN
411000000000Step 1Step 1
421200000000Step 2Step 2
431234567890Step 9Step 9
4412345678910Step 10Step 10
4512345678910i9HiredHired
Sheet1
Cell Formulas
RangeFormula
M41=IF(A41<>1,"",IF(AND(MAX($A41:$K41)=10,$L41="i9"),"Hired","Step "&MAX($A41:$K41)))
N41=IF(A41<>1,"",IF(AND(MAX($A41:$D41,$F41:$K41)=10,$L41="i9"),"Hired","Step "&MAX($A41:$D41,$F41:$K41)))


Formulae copied down.

Thisoldman's formula worked. I tried yours, and it just returned a blank cell. That said I wonder why it won't sort from A to Z correctly. It goes from step 6,5,4,3,2,10 when sorting from Z to A, and when going to A to Z it all goes blank.
 
Upvote 0
I think this might work.

=IF(A41 <> 1, "", IF(MAX($A41:$K41) < 9, "Step " & MAX($A41:$K41), IF(AND(MAX($K41:$L41)=10, $L41="i9"), "Hired", "Step " & MAX(K41:L41))))

This formula works great. Now that I'm using it, I'm seeing that there needs to be a tweak. If I put a date in K41, it will change it to step 10 even though, they may really only be on step 4. How can we make it only reflect Step 10 if step 9 has been completed. The date in K41 is the "start date", so we will always have a start date prior to all the steps being completed.
 
Upvote 0
Try this.

Code:
=IF(A41<>1,"",
  IF($J41 <> 9, "Step " & MAX($A41:$D41, $F41:$I41),
    IF($K41 = 10, IF($L41 = "i9", "Hired", "Step 10"), "Step 9")))

Written as a single line formula with no spaces, it looks like this.
Code:
=IF(A41<>1,"",IF($J41<>9,"Step"&MAX($A41:$D41,$F41:$I41),IF($K41=10,IF($L41="i9","Hired","Step10"),"Step9")))
 
Upvote 0
Try this.

Code:
=IF(A41<>1,"",
  IF($J41 <> 9, "Step " & MAX($A41:$D41, $F41:$I41),
    IF($K41 = 10, IF($L41 = "i9", "Hired", "Step 10"), "Step 9")))

Written as a single line formula with no spaces, it looks like this.
Code:
=IF(A41<>1,"",IF($J41<>9,"Step"&MAX($A41:$D41,$F41:$I41),IF($K41=10,IF($L41="i9","Hired","Step10"),"Step9")))

Worked like a charm! Thank you.
 
Upvote 0

Forum statistics

Threads
1,214,921
Messages
6,122,280
Members
449,075
Latest member
staticfluids

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