Forum Discussion

subhashgc's avatar
subhashgc
Copper Contributor
May 05, 2019
Solved

Excel Formula to skip rows for a specific text

How do get values from Section column to Result column for all the "Yes" under Response column and for any "No", the excel should skip that Section No and provide the number for next "Yes"?

SectionResponse Result
1Yes 1
2Yes 2
3Yes 3
4No 5
5Yes 6
6Yes  
  • subhashgc , actually you'd like to return first column filtered by condition on second one. That's like

    =FILTER(B3:B8,C3:C8="Yes")

    but since above function available only for Office Insiders we may imitate it by

    =IFERROR(INDEX($B$3:$B$8,AGGREGATE(15,6,1/($C$3:$C$8="Yes")*(ROW($C$3:$C$8)-ROW($C$2)),(ROW()-ROW($E$2)))),"")

    in E3 above and drag it down.

     

    Here AGGREGATE returns rows for which we meet the condition, we take next smallest and by this position INDEX returns the value from first column.

4 Replies

  • SergeiBaklan's avatar
    SergeiBaklan
    Diamond Contributor

    subhashgc , actually you'd like to return first column filtered by condition on second one. That's like

    =FILTER(B3:B8,C3:C8="Yes")

    but since above function available only for Office Insiders we may imitate it by

    =IFERROR(INDEX($B$3:$B$8,AGGREGATE(15,6,1/($C$3:$C$8="Yes")*(ROW($C$3:$C$8)-ROW($C$2)),(ROW()-ROW($E$2)))),"")

    in E3 above and drag it down.

     

    Here AGGREGATE returns rows for which we meet the condition, we take next smallest and by this position INDEX returns the value from first column.

Resources