SOLVED

Finding a blank cell and the value in the cell to the left

Copper Contributor

CPBExcelnovice_1-1644188089741.png

 

I would like to find the first blank cell and then the value in the cell to the left - i.e. "Tuesday".

 

The formula below finds the blank cell and returns the cell address $C$6

=CELL("address",INDEX(B5:D11,MATCH(TRUE,ISBLANK(C5:C11),0),2))

 

I was hoping to use the OFFSET function but it hasn't worked. Any suggestions?

 

2 Replies
best response confirmed by CPBExcelnovice (Copper Contributor)
Solution

@CPBExcelnovice 

 

=INDEX(B5:B11,MATCH(TRUE,ISBLANK(C5:C11),0))

Thank you so much...so simple! @Hans Vogelaar 

1 best response

Accepted Solutions
best response confirmed by CPBExcelnovice (Copper Contributor)
Solution

@CPBExcelnovice 

 

=INDEX(B5:B11,MATCH(TRUE,ISBLANK(C5:C11),0))

View solution in original post