The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!