OK. I have used 3 formulae here to get your desired result.
1. To return a list of names (array formula), copied down:
=IFERROR(INDEX($A$2:$A$15,MATCH(0,INDEX(COUNTIF($G$1:$G1,$A$2:$A$15),0),0)),"")
2. To return addresses (copied down):
=IFERROR(INDEX($B$2:$B$15,MATCH(G2,$A$2:$A$15,0)),"")
3. To return the 'phone numbers (array formula, copied across and down):
Formula:
=IFERROR(IFERROR(INDEX($C:$C,SMALL(IF(($A$2:$A$15=$G2)*($C$2:$C$15<>""),ROW($A$2:$A$15)),COLUMNS($A:A))),INDEX($D:$D,SMALL(IF(($A$2:$A$15=$G2)*($D$2:$D$15<>""),ROW($A$2:$A$15)),COLUMNS($A:A)-(COUNTIFS($A:$A,$G2,$B:$B,$H2,$C:$C,"<>"""))))),"")
Array Formulae are a little different from ordinary formulas in that they MUST be confirmed by pressing CTRL+SHIFT+ENTER to activate the array, not just ENTER.
You will know the array is active when you see curly braces { } appear around the outside of your formula. If you do not CTRL+SHIFT+ENTER you will (almost always) get an error message or an incorrect answer. Press F2 on that cell and try again.
Don't type the curly braces yourself - it won't work...
Bookmarks