Forum Discussion
vt_excel
Feb 10, 2023Copper Contributor
Applying pivot to get total value per name, but add items name only for unique
A) I have below data Name Value Item Robert 200 Apple Robert 500 Apple Robert 100 Orange Austin 50 Pie Austin 70 Grape Austin 20 Pie B) Want that, when a...
- Feb 11, 2023
Create this measure within Power Pivot:
= CONCATENATEX( VALUES( Table1[Item] ), Table1[Item], ", " )Change the table name as required.
You can then add this measure to the Values area of the Pivot Table together with the Name field (Rows area) and Value field (Values area).
Regards
vt_excel
Feb 11, 2023Copper Contributor
Yes
can u post one solution?
can u post one solution?
JosWoolley
Feb 11, 2023Iron Contributor
Create this measure within Power Pivot:
=
CONCATENATEX(
VALUES( Table1[Item] ),
Table1[Item],
", "
)
Change the table name as required.
You can then add this measure to the Values area of the Pivot Table together with the Name field (Rows area) and Value field (Values area).
Regards