Grouping individually from two lists: one multi select and one single select
I have a document with a form for people to submit requests –as part of the requests, users have to select the “Software Provider”
The Software Provider is a separate table and contains about 50 providers (and growing -if users don’t find the Provider they need, they can add one to the list). Requests can only be tied to ONE provider.
When my team is reviewing the requests, we have another column where we select a “Category” - there are only 10 categories, but one request might have multiple categories.
Right now, I have three tables:
- Requests (form responses)
- Software providers
- Categories
I need to be able to Group by Software Provider AND by Category in a way that all Providers are listed only once, and all categories are listed only once. This way i would be able to see for a specific provider, what are all the categories that have requests and within the category what are all those requests.
I don’t want to duplicate all categories for each software provider because then I end up with a table of ~1200 rows and it is so messy/heavy
Any ideas??