Forum Discussion

hhdez's avatar
hhdez
Regular Visitor
4 years ago
Solved

Group by Measure - Calculated categories

Hi, I am running an analysis on some sales figures, and I have the following table:   Product       WoW Delta    WoW Category A                     250                Increase B                 ...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi hhdez ,

     

    You will need the [WoW Category] to be a column.
    Then you could use CONCATENATEX() function to create a new category group.

    Column = CONCATENATEX(FILTER('Table','Table'[WoW Category]=EARLIER('Table'[WoW Category])),'Table'[Product],",")

     

    Best Regards,

    Jay