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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
TheRockStarDBA
Frequent Visitor

Implement CASE statement just like TSQL in PowerBI

Hello,

 

Is there a way to implement below case statement as a measure or a new column in powerBI

 

Result = case when AVG_USER_ACTIVE < 10 and PercentUsage < 20.00 and Total > 180 then 1

else 0

end

 

I have looked into switch and IF but getting syntax error.

 

Thanks,

Kin

1 ACCEPTED SOLUTION
djeepy1
Advocate I
Advocate I

Maybe I haven't understood but uou can use a simple if :

 

  result = if AVG_USER_ACTIVE < 10 and PercentUsage < 20.00 and Total > 180 then 1 else 0

 

And you can nest them :

 

  result = if 1=1 and 1<>2 then

            if 1<2 then 1 else 0

           else 0

 

Use parenthesis to priorize and clarify.

 

Jean-Pierre Riehl

Jean-Pierre Riehl
MVP Data Platform

View solution in original post

4 REPLIES 4
midhunjoy
New Member

Result = if(AVG_USER_ACTIVE < 10,if (PercentUsage < 20.00,if (Total > 180,1,0)),0)

 

Hope this helps

 

Thanks,

Midhun

djeepy1
Advocate I
Advocate I

Maybe I haven't understood but uou can use a simple if :

 

  result = if AVG_USER_ACTIVE < 10 and PercentUsage < 20.00 and Total > 180 then 1 else 0

 

And you can nest them :

 

  result = if 1=1 and 1<>2 then

            if 1<2 then 1 else 0

           else 0

 

Use parenthesis to priorize and clarify.

 

Jean-Pierre Riehl

Jean-Pierre Riehl
MVP Data Platform

Thanks ! I created a custom column with what you suggested and now its working.

 

Just a note for future readers: You cannot create a measure as I thought I could initially and hence this question.

You can create a Measure or a Calculated Column with that logic. You just need to write it in DAX.

 

In DAX, IF() is a function and logical operators are && (AND) and || (OR).

(there are also AND() / OR() functions but it is less readable)

Here is the syntax :

 

= IF([AVG_USER_ACTIVE] < 10 && [PercentUsage] < 20.00 && [Total] > 180 ; 1 ; 0)

 

Notice the brackets [] to reference a Column or another Measure.

You can nest IF() functions in second and third parameters

 

In DAX, you also have the SWITCH function if you want different results with different inputs.

Jean-Pierre Riehl
MVP Data Platform

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.