I currently have a very long formula that ultimately is a using IFERROR. I would like to have a formula that says, if the outcome of the IFERROR is blank, use this other very long formula that also is an IFERROR formula. I then want the formula to say, if this second IFERROR formula results in a blank, use a third IFERROR formula and so forth around 7-8 times. Is this doable, is this understandable? I will include the IFERROR formula that I am currently using and one of the other IFERROR formulas that I want to be used if this first IFERROR statement results in a blank.
Formula 1
=IFERROR(INDEX('Sheet1'!$D$11:$D$242,SMALL(IF('Sheet1'!$I$11:$I$241>0,ROW('Sheet1'!$A$11:$A$241)-ROW('Sheet1'!$A$11)+1,""),ROWS('Sheet1'!$A$11:A11))),"")
Formula 2
=IFERROR(INDEX('Sheet2'!$E$11:$E$147,SMALL(IF('Sheet2'!$C$11:$C$147>0,ROW('Sheet2'!$A$11:$A$147)-ROW('Sheet2'!$A$11)+1,""),ROWS('Sheet2'!$A$11:F11))),"")
I was thinking that the combination of these formulas could result in a formula as follows:
=IF(ISBLANK(IFERROR(INDEX('Sheet1'!$D$11:$D$242,SMALL(IF('Sheet1'!$I$11:$I$241>0,ROW('Sheet1'!$A$11:$A$241)-ROW('Sheet1'!$A$11)+1,""),ROWS('Sheet1'!$A$11:A11))),""),"FALSE",IFERROR(INDEX('Sheet1'!$D$11:$D$242,SMALL(IF('Sheet1'!$I$11:$I$241>0,ROW('Sheet1'!$A$11:$A$241)-ROW('Sheet1'!$A$11)+1,""),ROWS('Sheet1'!$A$11:A11))),""),IF(ISBLANK(IFERROR(INDEX('Sheet2'!$E$11:$E$147,SMALL(IF('Sheet2'!$C$11:$C$147>0,ROW('Sheet2'!$A$11:$A$147)-ROW('Sheet2'!$A$11)+1,""),ROWS('Sheet2'!$A$11:F11))),""),"FALSE","")
Bookmarks