Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I need help in creating the DAX formula, one created is not working correctly
this is SQL query
SELECT
CreatedMonth,
Product,
SUM(Value)
FROM Table1
WHERE
CreatedMonth = ReportingMonth
GROUP BY
CreatedMonth
Product
ORDER BY CreatedMonth
SQL query result
CreatedMonth | Product | Sum_Value |
FP2021.08 | XYZ | 1219 |
FP2021.09 | XYZ | 811 |
FP2021.10 | XYZ | 286 |
FP2021.11 | XYZ | 280 |
FP2021.12 | XYZ | 543 |
FP2022.01 | XYZ | 1412 |
FP2022.02 | XYZ | 561 |
FP2022.03 | XYZ | 586 |
FP2022.04 | XYZ | 300 |
FP2022.05 | XYZ | 304 |
FP2022.06 | XYZ | 382 |
But when created DAX formula
Sum_Created = CALCULATE(Sum(Table1[Value]),Table1[CreatedMonth] = Table1[ReportingMonth])
Getting the result from PBI, giving entire total for each month. also,I added reportingmonth to the table even then no change
Solved! Go to Solution.
Sum_Created = //try this one might help you
SUMX(
FILTER(
Table1,
Table1[CreatedMonth] = Table1[ReportingMonth]
),
Table1[Value]
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
thank you so much for quick reply, it worked!!
Sum_Created = //try this one might help you
SUMX(
FILTER(
Table1,
Table1[CreatedMonth] = Table1[ReportingMonth]
),
Table1[Value]
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
79 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
82 | |
48 | |
48 | |
48 |