Help shorten formula

TiggerToo

Board Regular
Joined
Feb 26, 2002
Messages
158
I need a little help with shortening this formula. The order does not matter which part is first or last, I just need to get shorter.

IF(AND($C$1="",INFO!H12=""),"",
If(AND($C$1="",INFO!H13=""),"",
IF(AND($C$1="ISO",INFO!H12=""),"",
IF(AND($C$1="ISO",INFO!H13=""),"",
IF(AND($C$1="ISO",INFO!H12="X"),"MAJOR",
IF(AND($C$1="ISO",INFO!H12="X"),"MINOR",
IF(AND($C$1="",INFO!H12="X"),"MAJOR ISO",
IF(AND($C$1="",INFO!H13="X"),"MINOR ISO",
IF(AND($C$1="Incoming",INFO!H12=""),"",
If(AND($C$1="Incoming",INFO!H13=""),"",
IF(AND($C$1="Incoming",INFO!H12="X"),"MAJOR ISO",
IF(AND($C$1="Incoming",INFO!H13="X"),"MINOR ISO")))))))))

Thanks
Walter
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Give this a try:

=IF(Info!H12="X",IF(OR($C$1="",$C$1="Incoming"),"MAJOR ISO","MAJOR"),IF(Info!H13="X",IF(OR($C$1="",$C$1="Incoming"),"MINOR ISO","MINOR"),""))
 
Upvote 0
Perhaps:

=IF(INFO!H12&INFO!H13="","",CHOOSE(MATCH("X",INFO!H12:H13,0),"MAJOR","MINOR")&IF(C1<>"ISO"," ISO",""))
 
Upvote 0

Forum statistics

Threads
1,215,684
Messages
6,126,199
Members
449,298
Latest member
Jest

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