Forum Discussion
emembreno81
4 years agoFrequent Visitor
Need Help with converting an Excel Formula to Dax
Hello! I'm currently working to move a report that I currently run in Excel into Power BI. I'm currently working to convert a rather complex formula into DAX. Can someone help guide me on how t...
onurbmiguel_
Power Participant
4 years agoHello emembreno81
try sometihing like that:
measure_1 =
var _value =
if( table[column_Y5] = "" || table[column_Y5] = "tbd" , "INCOMPLETE","COMPLETE")
return
_value
If the measure don“t work please send some exmaple of you model e data.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos!! ;-
Best Regards
BC
- emembreno814 years agoFrequent Visitor
That worked! Thank you so much!
- onurbmiguel_4 years ago
Power Participant
Hello
Please accept my solution and give me Kudos if possible.
Thanks
Bruno
- emembreno814 years agoFrequent Visitor
Hi Bruno!
So - I've actually now double checked the formula you provided and it looks like the OR functionality is not working in the formula your provided. It looks like the formula is excluding any case where both elements are not true where as I want it to look for instances where either one of the two portions of the formula are true. Do you know what may be causing that?