Forum Discussion
Anonymous
5 years agoNot applicable
How to add duplicate rows in PowerBI ?
Hi, My datasource looks like below where I have Duplicate rows. I would like to sum the Days column for duplicated rows. For below data the sume will be 9 for Name1 and 3 for Name2. I am not sure...
- 5 years ago
Anonymous
Drag and drop the Name field onto a Table visual and add the following measure next to it.
Total = SUM ( TableName[Days] )
Fowmy
Super User
5 years agoAnonymous
Drag and drop the Name field onto a Table visual and add the following measure next to it.
Total = SUM ( TableName[Days] )
Anonymous
5 years agoNot applicable
Thank you. It worked