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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.