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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
dw700d
Post Patron
Post Patron

Using a switch or if statement for different conditions

I would like to create a measure that categorizes the "running total spend" column by  "Contribution type"

 

Capture.PNG

 

Running Total amounts less than 750k should be considered - Contribution 1

Running Total amounts greater than 750k  should be considered– Contribution 2

Running Total amounts greater than 1.5M should be considered – Contribution 3

 

I think I can a accomplish with the switch function. anyone have thought on how i can accomplish this

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@dw700d 

Try this, you can also use SWITCH,

Contribution = 

VAR RT = [Running Total] RETURN

IF(
    RT < 750000,  "CONT1",
    IF( RT > 1500000,  "CONT3",
    "CONT2"
)
)

 

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

1 REPLY 1
Fowmy
Super User
Super User

@dw700d 

Try this, you can also use SWITCH,

Contribution = 

VAR RT = [Running Total] RETURN

IF(
    RT < 750000,  "CONT1",
    IF( RT > 1500000,  "CONT3",
    "CONT2"
)
)

 

________________________

Did I answer your question? Mark this post as a solution, this will help others!.

Click on the Thumbs-Up icon on the right if you like this reply 🙂

YouTube, LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

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.