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.
Hi,
Does anyone know how I can write the below Excel formula into a DAX Measure i'm struggling to select information for Column D2
as it keeps providing a function instead of the column.
=IF(OR(I2>=D2),0,5*E2)
Thanks E
Solved! Go to Solution.
Hello @EMaker,
Can you please try this approach:
CalculatedMeasure =
IF(
OR(
MAX(Table[I]) >= MAX(Table[D]),
ISBLANK(MAX(Table[D]))
),
0,
5 * MAX(Table[E])
)
If you're trying to create a DAX measure:
Measure Formula =
SUMX(
YourTable,
IF(
OR(YourTable[I] >= YourTable[D], FALSE),
0,
5 * YourTable[E]
)
)
If you want to create a calculated column:
Calculated Column Formula =
IF(
OR(YourTable[I] >= YourTable[D], FALSE),
0,
5 * YourTable[E]
)
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hello @EMaker,
Can you please try this approach:
CalculatedMeasure =
IF(
OR(
MAX(Table[I]) >= MAX(Table[D]),
ISBLANK(MAX(Table[D]))
),
0,
5 * MAX(Table[E])
)