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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Dax does not accept IF AND OR statement

Hi,

 

I am trying to make a new column including an 'if or' statement which also includes a nested OR. This in the presentation mode (not in query mode)

 

Can somebody help how I should write this? When writing 'IF(OR(....' the OR is not accepted. OR is marked with a red waved line beneeth.

 

Thanks in advance.

1 ACCEPTED SOLUTION

OK, I created a table like this:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkvMKUstVorViVYKTk0sgbACEvNArFgA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ARTICLE_GROUP_NAME = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ARTICLE_GROUP_NAME", type text}})
in
    #"Changed Type"

And copied your formula into a new column and it worked perfectly. Even as a slicer. Only thing I can think of if you are getting blanks in your slicer is that you have something else filtering the page?

 

 

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
Greg_Deckler
Community Champion
Community Champion

Can you post the full formula? OR is a valid DAX function. For example, this formula is valid in my test:

 

Measure 2 = IF(OR(MAX('Table1'[Name])="Bloggs",MAX('Table1'[Name])="Smith"),"Smith","Not Smith") 


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Hi Greg,

 

This is the formula:

 

Article_Group = if(OR([ARTICLE_GROUP_NAME]="Valves",[ARTICLE_GROUP_NAME]="Seats"),"Wear_parts","Others")

 

When I use a slicer, it results in 'blanks'.

Hi @Anonymous,

 

Have you solved your problem?

 

If you have solved, welcome to share your solution or mark the right reply as answer. More people will find the solution easily.

 

If you still need help, could you share a dummy pbix file which can reproduce the scenario, so that we can help further investigate on it? You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.)

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

OK, I created a table like this:

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkvMKUstVorViVYKTk0sgbACEvNArFgA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [ARTICLE_GROUP_NAME = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ARTICLE_GROUP_NAME", type text}})
in
    #"Changed Type"

And copied your formula into a new column and it worked perfectly. Even as a slicer. Only thing I can think of if you are getting blanks in your slicer is that you have something else filtering the page?

 

 

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors