Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have this:
Month | Day | City |
11 | 22 | Kaunas |
11 | 23 | Vilnius |
11 | 24 | Kaunas |
11 | 24 | Klaipeda |
11 | 25 | Kaunas |
Need this:
Mont | |
Day | 11 |
22 | Kaunas |
23 | Vilnius |
24 | Kaunas, Klaipeda |
25 | Kaunas |
Is it posable to show few results in one cell? I want show it in PivotTable.
Yes, just use concatenate with pivot table
Concat(City,',')
or
=aggr(Concat(City,','),Day) // if u r adding dimension as Calculated dimension
Yes, just use concatenate with pivot table
Concat(City,',')
or
=aggr(Concat(City,','),Day) // if u r adding dimension as Calculated dimension
Thank you. It's working.