Forum Discussion
Organising cells with multiple data values
- 3 years ago
If you want to reach this table start from the first one, and exclude the customer and location columns,
1. Split the Products column by rows
Group by the same column with the defaut config
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
Would this output answer your need? (I kept only two customers for the example)
| Customer | Product | Location |
| Customer 1 | Product A | Residential |
| Customer 1 | Product A | Retail |
| Customer 1 | Product A | School |
| Customer 1 | Product A | Hospital |
| Customer 1 | Product B | Residential |
| Customer 1 | Product B | Retail |
| Customer 1 | Product B | School |
| Customer 1 | Product B | Hospital |
| Customer 1 | Product C | Residential |
| Customer 1 | Product C | Retail |
| Customer 1 | Product C | School |
| Customer 1 | Product C | Hospital |
| Customer 1 | Product D | Residential |
| Customer 1 | Product D | Retail |
| Customer 1 | Product D | School |
| Customer 1 | Product D | Hospital |
| Customer 2 | Product A | Residential |
| Customer 2 | Product A | Retail |
| Customer 2 | Product A | Hospital |
| Customer 2 | Product D | Residential |
| Customer 2 | Product D | Retail |
| Customer 2 | Product D | Hospital |
I am looking for something more like:
| Products | Number of sellers |
| Product A | 3 |
| Product B | 2 |
| Product C | 3 |
| Product D | 2 |
Kind regards
Michael
- DataVitalizer3 years agoSuper User
If you want to reach this table start from the first one, and exclude the customer and location columns,
1. Split the Products column by rows
Group by the same column with the defaut config
Did it work ? 👍 A kudos would be appreciated 📢 Mark it as a solution to help spreading knowledge
- mike_newbs3 years agoFrequent Visitor
Thank you DataVitalizer That worked perfectly.
- DataVitalizer3 years agoSuper User
I am glad I was able to help