Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
i want to summarize data from my table , i have come up with following SQL query, how can i implement it with DAX.
SELECT B.ACCOUNT,YEAR(B.DATE) [YEAR],SUM(SALESPRICE) [SUM] FROM SALES B GROUP BY ACCOUNT,YEAR(B.DATE)
Solved! Go to Solution.
Hi @Talaal-Sid ,
Table = SUMMARIZECOLUMNS(SALESB[DATE].[YEAR],"SUM",SUM(SALESB[SALESPRICE]))
Hi @Talaal-Sid ,
Table = SUMMARIZECOLUMNS(SALESB[DATE].[YEAR],"SUM",SUM(SALESB[SALESPRICE]))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 79 | |
| 48 | |
| 35 | |
| 31 | |
| 27 |