Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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...
  • Ashish_Mathur's avatar
    Ashish_Mathur
    3 years ago

    Hi,

    This measure works

    Measure = CONCATENATEX(VALUES(Data[Drug]),data[drug]," ")

    Hope this helps.