Forum Discussion
Anonymous
3 years agoNot applicable
analysis by grouping
Hi everyone, I'm wondering if there is a way to use DAX to get an analysis based on a grouped variable. For example, I have two columns: Case # & drug. Each drug in a specific case is a new row b...
- 3 years ago
Hi,
This measure works
Measure = CONCATENATEX(VALUES(Data[Drug]),data[drug]," ")Hope this helps.
Ashish_Mathur
3 years agoSuper User
Hi,
Share some data and show the expected result.
- Anonymous3 years agoNot applicable
What my data currently looks like:
How I need the data to look:
Thanks!
- Ashish_Mathur3 years agoSuper User
Hi,
This measure works
Measure = CONCATENATEX(VALUES(Data[Drug]),data[drug]," ")Hope this helps.