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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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])
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 10 | |
| 10 | |
| 6 | |
| 5 |