Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Everyone,
Please look into the issue i have been facing below and help:
I have two tables with data as follows:
I have created a mesaure which calculates Total consumption by month so that i can put it in "Tooltips" of Stacked column chart to show totals across month.
Below is the dax used:
TotalByMOnth = SUMX(SUMMARIZE('Month','Month'[MONTH],"Total", CALCULATE(SUM(ConsumptionFact[Consumption]))),[Total])
I am not able to get desired result. Can anyone suggest any fix in the DAX used?
Solved! Go to Solution.
Hi @Anonymous,
Thanks for trying buddy. It did not give the desired result though.
I found the hint of solution by using Quick Measures option. The requried DAX is
TotalByMonth = CALCULATE(SUM('ConsumptionFact'[Consumption]), ALLSELECTED(ConsumptionFact[Meter]))
Would this work for you?
TotalByMOnth = TOTALMTD( SUM(ConsumptionFact[Consumption]), ConsumptionFact[Dates] )
Hi @Anonymous,
Thanks for trying buddy. It did not give the desired result though.
I found the hint of solution by using Quick Measures option. The requried DAX is
TotalByMonth = CALCULATE(SUM('ConsumptionFact'[Consumption]), ALLSELECTED(ConsumptionFact[Meter]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
145 | |
87 | |
66 | |
51 | |
45 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |