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 !
How to replicate below MAXIFS excel formula in powerBi ?
=MAXIFS(L:L,A:A,A2)
Solved! Go to Solution.
@Anonymous
Try the following:
MAX_SUBID = CALCULATE(MAX('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))
-- Excel
=MAXIFS(L:L,A:A,A2)
L:L = Sub_ID
A:A = ID
@Anonymous
Try the following:
MAX_SUBID = CALCULATE(MAX('Table'[Sub_ID ]), ALLEXCEPT('Table', 'Table'[ID]))
-- Excel
=MAXIFS(L:L,A:A,A2)
L:L = Sub_ID
A:A = ID