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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

DAX Nested IF with AND

I wish to add column in the query based on flag in the incoming data.
To achieve is:
based on flag value :

if flag < 1, then Red
else if flag is >0 and flag < 3 then yellow
else green

I tried to do it with DAX function as below : ([D] is my flag columns

 

IF (AND([D] >0,[D]<3),"Yellow",IF([D] < 1,"Red","Green"))

 

Error:

 

DAX If Error.jpg

 

Tried Switch function too:

 

= SWITCH(TRUE(),
   [D] <= 0, "Red",
   AND([D] >0, [D] < 3), "Yellow",
   "Green")

 

Error:

 

Switch.jpg

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@Anonymous In Power Query, make sure you are following case-sensitive rules. As M-code is case-sensitive and IF is not same as if.

 

Please change the logic in Power Query as below

 

= Table.AddColumn(#"Added Index1", "Custom", each if [Flag]<1 then "Red" else if [Flag]>0 and [Flag]<3 then "Yellow" else "Green")

In DAX, it will be

 

IF(Test154[Flag]<1,"Red",IF(AND(Test154[Flag]>0,Test154[Flag]<3),"Yellow","Green"))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




View solution in original post

2 REPLIES 2
PattemManohar
Community Champion
Community Champion

@Anonymous In Power Query, make sure you are following case-sensitive rules. As M-code is case-sensitive and IF is not same as if.

 

Please change the logic in Power Query as below

 

= Table.AddColumn(#"Added Index1", "Custom", each if [Flag]<1 then "Red" else if [Flag]>0 and [Flag]<3 then "Yellow" else "Green")

In DAX, it will be

 

IF(Test154[Flag]<1,"Red",IF(AND(Test154[Flag]>0,Test154[Flag]<3),"Yellow","Green"))




Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




Anonymous
Not applicable

Ola..!! It workd for me. Thanks

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.