Forum Discussion
Convert Excel functions to DAX
Hello there,
I am a new user of power BI, I have quite the complex formula in excel that return conditional values. I tried to put it in Power BI however the error:
"Too many arguments were passed to the OR function. The maximum argument count for the function is 2." happens.
While this works perfectly in Excel. Could you help me see what could be changes in it and convert it in DAX ? Thank you
The Excel forumula is:
=IF([@[Aa]]="YES";IF(OR(ISNUMBER(SEARCH("TM TD";[@[Bb]];1));[@[Bb]]="TM BOLOGNA";[@[Bb]]="TM TOLOS";[@[Bb]]="PROJECT");IF(AND([@[Cc]]=0;OR([@[Dd]]="";[@[Ee]]=""));"valid";"conflict");IF(AND([@[Cc]]=1;AND([@[Dd]]>0;[@[Ee]]>0));"conflict";IF(OR([@[Ff]]=1;[@[Gg]]=1);"valid";IF(AND([@[Hh]]="SECTOR";[@[Ii]]=[@[Jj]];[@[Jj]]=[@[Kk]]);"sector ag";""))));"N/A")
The current DAX formula that gives me the error is :
Sitation = IF(Sheet1[Aa]="YES",
IF
(OR
(ISNUMBER
(SEARCH
("TM TD",Sheet1[Bb],1,"0")),
Sheet1[Bb]="TM BOLOGNA",Sheet1[Bb]="TM TOLOS",Sheet1[Bb]="PROJECT"),
IF
(AND
(Sheet1[Cc]=0,
OR(Sheet1[Dd]="",Sheet1[Ee]="")
),"valid","conflict"),
IF
(AND
(Sheet1[Cc]=1,
AND
(Sheet1[Dd]>0,Sheet1[Ee]>0)),
"conflict",
IF(
OR(
Sheet1[Ff]=1,Sheet1[Gg]=1)
,"valid",IF
(AND
(Sheet1[Hh]="SECTOR",Sheet1[Ii]=Sheet1[Jj],Sheet1[Jj]=Sheet1[Kk]),"sector ag","")))),
"N/A")
5 Replies
- parry2kSuper User
- nandicResident Rockstar
Hi Elios ,
It seems your are passing multiple conditions to OR function? OR function accepts only 2 parameters.
If you need multiple conditions in OR function, use this syntax:
If(Table[Criteria1] = "A" || Table[Criteria2] = "B" || Table[Criteria3] = "C" || ...
Regards,
Nemanja Andic- EliosRegular Visitor
Thank you that seems to be what I need, what are the || ? Do they play a similar role to the OR function ?
Also I have a similar problem with the AND function that is less flexible than on excel. Do you have any idea how to replace it with something that can accept more than 2 parameters ?
- nandicResident Rockstar
- parry2kSuper User
Elios It will be much easier if you share sample data and the expected output of this column. Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490