Forum Discussion
Yael
Helper IV
9 years agomerge identical rows in table visual
Hello,
How can I merge identical rows in a table visual?
I want convert from the left table into the right one.
Thank you!
- Anonymous9 years ago
HI Yael.
Table visual not support to merge the row, I think you can submit this requirement to ideas or use matrix visual.
In addition, if you want to summary the employees which has the similar manger, you can try to use below measure formula.
Employee Member = var manger=LASTNONBLANK(Table1[Manager],[Manager]) return CALCULATE(CONCATENATEX(VALUES(Table1[Employee]),[Employee],","),Table1[Manager]=manger)
Regard,
Xiaoxin Sheng
2 Replies
- AnonymousNot applicable
HI Yael.
Table visual not support to merge the row, I think you can submit this requirement to ideas or use matrix visual.
In addition, if you want to summary the employees which has the similar manger, you can try to use below measure formula.
Employee Member = var manger=LASTNONBLANK(Table1[Manager],[Manager]) return CALCULATE(CONCATENATEX(VALUES(Table1[Employee]),[Employee],","),Table1[Manager]=manger)
Regard,
Xiaoxin Sheng
- Yael
Helper IV
Thank you Anonymous