I currently have 14 sheets with the following columns:
Batch # and Reviewer
- I use an Index Distinct formula to acquire the unique batch numbers from all 14 sheets and put them into 14 columns on the 'metrics' sheet.
- I then use another index distinct to get a list of all the unique batch numbers into one 'Unique Batch Number' column on the metrics sheet.
- I then use a join distinct collect to find all reviewers that are listed as reviewers for the batch from #2 above and put their names into another 14 columns on the metrics sheet.
So now the issue I have is I would like to list all distinct viewers for one batch number. In the scenarion I have listed above, I may have the same reviewer appear by itself or in a 'collection' in one cell for step 3 and when I try to join distinct collect the names from step 3 I get duplicates (I am guessing because of multiple names appearing in one cell from the previous join distince collect).
The real question is - how can I get distinct names from multiole sheets with a criteria that they reviewed a unique batch number. (Example Below for 3 sheets):
Sheet1 | | | Sheet 2 | | | Sheet 3 | |
|---|
Batch# | Reviewer | | Batch# | Reviewer | | Batch# | Reviewer |
ABC | Bob | | ABC | Bob | | ABC | Mary |
DEF | Mary | | DEF | Mary | | DEF | Mary |
GHI | Tim | | GHI | Bob | | GHI | Bob |
JKL | Jane | | JKL | Jane | | JKL | Mary |
MNO | Jane | | MNO | Bob | | MNO | Tim |
| | | | | | | |
Result Required | | | | | | | |
ABC | Bob Mary | | | | | | |
DEF | Mary | | | | | | |
GHI | Tim Bob | | | | | | |
JKL | Jane Mary | | | | | | |
MNO | Jane Bob Tim | | | | | | |