Hi All. I have one more request I need help with. I need to find the list of different assignees for same type of data across different unit. The input and desired output is as follows:
Input:
| Unit | Data | Player1 Role | Player1 | Monitor Role | Monitor | Substitute Role | Substitute |
| A | Name1 | Owner | Claire | Preparer | Michael | Owner | Claire |
| B | Name2 | Preparer | Michael | Owner | Claire | Manager | Sean |
| C | Name1 | Checker | Ben | Checker | Ben | Manager | Sean |
| D | Name4 | Manager | Sean | Checker | Ben | Owner | Claire |
Output:
| Unit | Data | Player1 Role | Player1 | Monitor Role | Monitor | Substitute Role | Substitute |
| A | Name1 | Owner | Claire | Preparer | Michael | Owner | Claire |
| C | Name1 | Checker | Ben | Checker | Ben | Owner | Claire |
In the above example for the same data (name1) the assignees across different unit are different, which should have been the same. So, I need to find it as an output. Please help.