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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.