Forum Discussion
Anonymous
6 years agoNot applicable
DAX Replace repetitive string with one string
Hi Everyone, I have a column with the click flow of a user on a specific day: ClickFlowColumn = CALCULATE(CONCATENATEX(ActivitiesTable, ActivitiesTable[ActivityType], ", "), ALLEXCEPT(Activ...
- 6 years ago
Anonymous
What do you change your formula like this?ClickFlowColumn = CALCULATE ( CONCATENATEX ( VALUES ( ActivitiesTable[Activity Type] ), ActivitiesTable[Activity Type], ", " ), ALLEXCEPT ( ActivitiesTable, ActivitiesTable[UserId], ActivitiesTable[Date] ) )________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
vanessafvg
Community Champion
6 years agohave you tried use the contcatenex function?
CONCATENATEX(VALUES(Table1[Column1]),[Column1])
CONCATENATEX(VALUES(Table1[Column1]),[Column1])
- Anonymous6 years agoNot applicable
- Fowmy6 years ago
Super User
Anonymous
What do you change your formula like this?ClickFlowColumn = CALCULATE ( CONCATENATEX ( VALUES ( ActivitiesTable[Activity Type] ), ActivitiesTable[Activity Type], ", " ), ALLEXCEPT ( ActivitiesTable, ActivitiesTable[UserId], ActivitiesTable[Date] ) )________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
- Anonymous6 years agoNot applicable
Fowmy That worked! Thank you!