Thanks in advance for helping me out!
How would you advise me to go from this table:
Equipment Desc | Ship To Name
------------------+----------
Small | Bob
Small | Dylan
Small | Joe
Small | Ethan
Small | Bob
Medium | Joe
Medium | Michael
Medium | Bob
Big | Bob
Big | Joe
Big | Michael
To this table :
Ship To Name | Equipment Desc
-------------+-------------
Bob | 1 Big, 1 Medium, 2 small
Dylan | 1 Small
Joe | 1 Big, 1 Medium, 1 Small
Ethan | 1 Small
Michael | 1 Big, 1 Medium
I tried the powerquery solution from an older post.
https://superuser.com/a/1054653/1136022
This was my take
= Table.Group(#"Changed Type", {"Ship To Name"}, {{"Installed Base", each Text.Combine([Equipment Desc], "#(cr)"), type text}})
But it doesn't sum up the instruments. It just returns a list of instruments.
i.e. It doesn't show "2 Big" but "1 big, 1 big".
Thanks in advance for your consideration.
Best regards,
Thomas
