Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

How to put multiple filter conditions in a query?

Hi,

 

My below query is not working, it says I can give only 3 filter conditions for OR.

 

Loan Number MTD = IF(Enco[Current_Month_FileStarted] = 1 || Enco[Current_Month_Application] = 1|| Enco[Current_Month_Processing] =1 || Enco[Current_Month_Submitted] =1 || Enco[Current_Month_CondApproval] =1, Enco[Current_Month_PreCTC] = 1 || Enco[Current_Month_CTC] =1, Enco[Current_Month_DocsOut] =1 || Enco[Current_Month_FundingDate] =1 , Enco[Loan_Number], BLANK())

 

Any other way I can apply multiple OR conditions?

 

Thanks,

Shikha

1 ACCEPTED SOLUTION

If the || operator is not working, you will have to nest multiple ORs

 

Measure =
IF( OR (CondA, 
         OR (CondB,
           OR(CondC, CondD))),
TRUE,
FALSE)

Hope this helps

David

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

What error  are you getting?

 

Try thi s:

 

Loan Number MTD = IF(OR(Enco[Current_Month_FileStarted] = 1 ,
Enco[Current_Month_Application] = 1, Enco[Current_Month_Processing] =1
, Enco[Current_Month_Submitted] =1 , Enco[Current_Month_CondApproval] =1
, Enco[Current_Month_PreCTC] = 1 , Enco[Current_Month_CTC] =1
, Enco[Current_Month_DocsOut] =1 , Enco[Current_Month_FundingDate] =1)
, Enco[Loan_Number], BLANK())

Anonymous
Not applicable

I am getting this error for the query I posted, Too many arguments were passed to the IF function. The maximum argument count for the function is 3.

If the || operator is not working, you will have to nest multiple ORs

 

Measure =
IF( OR (CondA, 
         OR (CondB,
           OR(CondC, CondD))),
TRUE,
FALSE)

Hope this helps

David

Anonymous
Not applicable

Thanks David, it worked!! This community is great.

Anonymous
Not applicable

I am trying your way, but it says we can only put two arguments in OR(Logical 1, Logical 2).

Any other suggestion?

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.