I have a multi-select column where I am selecting all the teams I need to reach out to about a particular row of data. I want to streamline the number of meetings I schedule, so I am trying to calculate how many unique meetings I would need to create based on the different team combinations present. For example if I have 5 rows the column could have the following values:
Row 1: I & E, FABS, PACs
Row 2: Global Strategies, PACs, Business Finance
Row 3: I & E, FABS, PACs
Row 4: PACs
Row 5: PACs
The number of meeting I would need would be 3 - one with I & E, FABS, and PACs, one with Global Strategies, PACs, and Business Finance, and one with PACs. I have hundreds of rows with different variations of these team names and want to figure out the unique meetings I would need based on those different variations.
I was trying to create reports for each unique combination and can do it, but the process of doing so assumes I know all the combinations. Just trying to see if there is a more efficient way to get that information.