Hello all,
I'm hoping that this is a simple solution, and I'm just not seeing it.
I have a worksheet with multiple client rows, with an adjacent date column (it's a schedule). What I need to do, is have a formula (or VBA code) that looks through the date column and finds all client rows with a given value (ie. same date), and summarize it all in one cell.
For instance ...
A2 = ABC Co.
A3 = XYZ Co.
A4 = John Doe
B2 = 01/01/2005
B3 = 01/12/2005
B4 = 01/01/2005
Here's what I need calculated from these ...
In C2, I need to display all clients with a date of 01/01/2005 (ie. ABC Co. and John Doe).
I have been able to do an OFFSET & MATCH combo to get me close
[ =OFFSET($A$1,MATCH("01/01/2005",$B$2:$B$4,0),0) ]
but that only gives me the first instance of 01/01/2005 (ie. ABC Co.). How do I get this to look through the entire list and list ALL clients scheduled on 01/01/2005?
Or would this require VBA code?
I'm hoping that this is a simple solution, and I'm just not seeing it.
I have a worksheet with multiple client rows, with an adjacent date column (it's a schedule). What I need to do, is have a formula (or VBA code) that looks through the date column and finds all client rows with a given value (ie. same date), and summarize it all in one cell.
For instance ...
A2 = ABC Co.
A3 = XYZ Co.
A4 = John Doe
B2 = 01/01/2005
B3 = 01/12/2005
B4 = 01/01/2005
Here's what I need calculated from these ...
In C2, I need to display all clients with a date of 01/01/2005 (ie. ABC Co. and John Doe).
I have been able to do an OFFSET & MATCH combo to get me close
[ =OFFSET($A$1,MATCH("01/01/2005",$B$2:$B$4,0),0) ]
but that only gives me the first instance of 01/01/2005 (ie. ABC Co.). How do I get this to look through the entire list and list ALL clients scheduled on 01/01/2005?
Or would this require VBA code?