Forum Discussion
Anonymous
7 years agoNot applicable
Calculate Table/SummarizeColumns grouping by date
Hello, I want to export via Dax Studio the following data structure Day|Product|ProductCategory|SalesAmount My original data has Datetime|Product|ProductCategory|SalesAmount Can I perform...
- 7 years ago
Anonymous ,
You may refer to the DAX below.
Table = SUMMARIZECOLUMNS ( data[Datetime].[Date], data[Product], data[ProductCategory], "Amount", SUM ( data[SalesAmount] ) )
MFelix
7 years agoSuper User
Hi Anonymous ,
Can you share some sample data and expected result?
Regards
MFelix