Forum Discussion
Wresen
3 years agoPost Patron
Combine values on each row
Hi and thanks for reading this. I have a little problem and i have no clue how to do it , it seemed easy when i started to think about it 🙂 I have a tabel like below: I would like to create...
- 3 years ago
Try adding this as a calculated column:
Comb = CALCULATE(CONCATENATEX('your table name',[Store],"/",1),ALL('your table name'),your table name'[What]=EARLIER('your table name'[What])
halfglassdarkly
3 years agoResponsive Resident
Try this and see if it works for you:
Comb =
CALCULATE(CONCATENATEX(DISTINCT('your table name'),[Store],"/",1),ALL('your table name'),your table name'[What]=EARLIER('your table name'[What])
Wresen
3 years agoPost Patron
Hi halfglassdarkly
Did not get yours to work , but with small modification as below it worked .
Thanks so much