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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Everyone, how can I do this formula cleary simple in Excel but in DAX? I'm struggling to get it.
=T3/SUMIFS(T:T,AM:AM,AM3)
Solved! Go to Solution.
SumIF = //try this
DIVIDE(
Table1[T3],
CALCULATE(
SUM(Table1[T]),
FILTER(
Table1,
Table1[AM] = EARLIER(Table1[AM])
)
)
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
SumIF = //try this
DIVIDE(
Table1[T3],
CALCULATE(
SUM(Table1[T]),
FILTER(
Table1,
Table1[AM] = EARLIER(Table1[AM])
)
)
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!