HI
Trying to combine the results of 4 filters from the same Data
What I need to do is look for where ever Dave appears in Name1, Name2, Name3 or Name 4 Column and show those Rows.
Required result is at the bottom which shows only Rows where Dave appears and doesn't include duplicate rows where he might appear in more than 1 column
Individual filters would be =FILTER($C$3:$H$14, C3:C14= "Dave") =FILTER($C$3:$H$14, D3:D14= "Dave") =FILTER($C$3:$H$14, E3:E14= "Dave") =FILTER($C$3:$H$14, F3:F14= "Dave")
But not sure how to get above filters together(removing duplicates)
Data Below is in C2:H14(Headers are in Row 2)
Required Result
Trying to combine the results of 4 filters from the same Data
What I need to do is look for where ever Dave appears in Name1, Name2, Name3 or Name 4 Column and show those Rows.
Required result is at the bottom which shows only Rows where Dave appears and doesn't include duplicate rows where he might appear in more than 1 column
Individual filters would be =FILTER($C$3:$H$14, C3:C14= "Dave") =FILTER($C$3:$H$14, D3:D14= "Dave") =FILTER($C$3:$H$14, E3:E14= "Dave") =FILTER($C$3:$H$14, F3:F14= "Dave")
But not sure how to get above filters together(removing duplicates)
Data Below is in C2:H14(Headers are in Row 2)
Name1 | Name2 | Name3 | Name4 | Value1 | Value2 |
Fred | Dave | Dave | Ben | 6332 | 5122 |
Harry | Fred | Fred | Ben | 7979 | 5898 |
George | Dave | Dave | Fred | 7847 | 8882 |
Mary | Clive | Dave | Ben | 7825 | 7426 |
Fred | Dave | Dave | Ben | 9567 | 9215 |
Harry | Fred | Fred | Dave | 6783 | 9997 |
George | Dave | Dave | Fred | 5034 | 7957 |
Mary | Clive | Tom | Ben | 5504 | 5087 |
Mary | Dave | Dave | Ben | 5887 | 8104 |
Harry | Fred | Fred | Ben | 7581 | 7460 |
George | George | Harry | Fred | 8673 | 6727 |
Mary | Clive | Dave | Ben | 8958 | 6284 |
Required Result
Name1 | Name2 | Name3 | Name4 | Value1 | Value2 |
Fred | Dave | Dave | Ben | 6332 | 5122 |
George | Dave | Dave | Fred | 7847 | 8882 |
Mary | Clive | Dave | Ben | 7825 | 7426 |
Fred | Dave | Dave | Ben | 9567 | 9215 |
Harry | Fred | Fred | Dave | 6783 | 9997 |
George | Dave | Dave | Fred | 5034 | 7957 |
Mary | Dave | Dave | Ben | 5887 | 8104 |
Mary | Clive | Dave | Ben | 8958 | 6284 |