Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 a groupby with a summarizecolumns to retrieve the sales by day without creating any new columns?
I tried something like this, but it doesnt work
EVALUATE
GROUPBY( SUMMARIZECOLUMNS( "Date",INT(data[Datetime]), data[Product], data[ProductCategory]), "SlsAmount",CALCULATE(SUM(data[SalesAmount)) )
[Date],
[Product],
[ProductCategory]
Ty,
João
Solved! Go to Solution.
@Anonymous ,
You may refer to the DAX below.
Table =
SUMMARIZECOLUMNS (
data[Datetime].[Date],
data[Product],
data[ProductCategory],
"Amount", SUM ( data[SalesAmount] )
)
@Anonymous ,
You may refer to the DAX below.
Table =
SUMMARIZECOLUMNS (
data[Datetime].[Date],
data[Product],
data[ProductCategory],
"Amount", SUM ( data[SalesAmount] )
)
Hi @Anonymous ,
Can you share some sample data and expected result?
Regards
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 40 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 61 | |
| 45 |