I cannot figure out what I'm doing wrong. I have the following data in one sheet
1-Jan
Jim
Jane 4
Mary
Jerry
John 7
Sally
Mark 7
I am trying to get the data to fill in on another excel sheet, within the same workbook, that is setup like a calendar
My expected result is:
Jane 4
John 7
Mark 7
I am using an array formula in the first cell which is pulling in correctly: (Jane 4)
=IFERROR(INDEX(Sheet1!$A$2:$A$200,MATCH(FALSE,ISBLANK(Sheet1!$B$2:$B$200),0)),"")
The second cell is pulling in the wrong data. This is the array formula I am using:
=IFERROR(INDEX(Sheet1!$A$2:$A$200,SMALL(IF(Sheet1!$B$2:$B$200="",ROW(Sheet1!$A$2:$A$200)),ROW()-1),1),"")
Any advise?
Thanks
1-Jan
Jim
Jane 4
Mary
Jerry
John 7
Sally
Mark 7
I am trying to get the data to fill in on another excel sheet, within the same workbook, that is setup like a calendar
My expected result is:
Jane 4
John 7
Mark 7
I am using an array formula in the first cell which is pulling in correctly: (Jane 4)
=IFERROR(INDEX(Sheet1!$A$2:$A$200,MATCH(FALSE,ISBLANK(Sheet1!$B$2:$B$200),0)),"")
The second cell is pulling in the wrong data. This is the array formula I am using:
=IFERROR(INDEX(Sheet1!$A$2:$A$200,SMALL(IF(Sheet1!$B$2:$B$200="",ROW(Sheet1!$A$2:$A$200)),ROW()-1),1),"")
Any advise?
Thanks