Forum Discussion

AnilKumar's avatar
AnilKumar
Helper II
7 years ago
Solved

Dax Formula

Hi All,   I Need a Dax Formual (Measure) to get the result in the below Format.   Existed Data:   I need the Out as Date based Grouping  of Quantities Along with Module Name.   Output c...
  • v-yuta-msft's avatar
    7 years ago

    AnilKumar ,

     

    You may create a calculate column and then drag the calculate column and date column to a table visual.

    Module&Quantity = CONCATENATEX(FILTER('Table', 'Table'[Date] = EARLIER('Table'[Date])), CONCATENATE('Table'[Module Name], CONCATENATE("-", 'Table'[Quantity])), ",")

     

    Community Support Team _ Jimmy Tao

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.