Hi Everyone,
I'm trying to work on a formula which has me stumped.
I have a table which contains Names in one Column(A), and Dates in a second Column(B).
I only want to return column B DATE if the Column A Name is Bob
But it has to be the last Row that has Bob in it
i.e.
A B
Name Date
Alice 2018-01-02 14:30
Bob 2018-01-14 14:30
John 2018-01-16 13:30
John 2018-02-01 13:30
Peter 2018-02-14 00:13
Bob 2018-02-15 13:13
Alice 2018-02-15 14:13
Now even though there is a Bob with the Date 2018-01-14 14:30 , I only want to return 2018-02-15 13:13
I've tried a few different formulas but cant quite manage it. I was most recently seeing if I could work using the Index command to get the last row to contain Bob, but it wasn't working.
=IF(A:A="Bob",INDEX(B:B,COUNTA(B:B)))
Any help at all is appreciated.
I'm trying to work on a formula which has me stumped.
I have a table which contains Names in one Column(A), and Dates in a second Column(B).
I only want to return column B DATE if the Column A Name is Bob
But it has to be the last Row that has Bob in it
i.e.
A B
Name Date
Alice 2018-01-02 14:30
Bob 2018-01-14 14:30
John 2018-01-16 13:30
John 2018-02-01 13:30
Peter 2018-02-14 00:13
Bob 2018-02-15 13:13
Alice 2018-02-15 14:13
Now even though there is a Bob with the Date 2018-01-14 14:30 , I only want to return 2018-02-15 13:13
I've tried a few different formulas but cant quite manage it. I was most recently seeing if I could work using the Index command to get the last row to contain Bob, but it wasn't working.
=IF(A:A="Bob",INDEX(B:B,COUNTA(B:B)))
Any help at all is appreciated.