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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Brad
New Member

Power BI - Assign value to column depending on another columns value.

As the title suggests, i want to assign a value to a column depending on another columns value. For example, if the a field in the 'car' column had a value between 0-9 i want the corressponding field in the 'cargroup' column to be 1. If the value in 'car' was 10-19 i want the value in 'cargroup' to be 2 and so on... What formula would i use to do this?

1 ACCEPTED SOLUTION

Hi @Brad,

The formula @Sean posted is correct. I have test it, it returns the right result.

1.PNG

If you have have resolved your issue, please mark corresponding reply as answer, which will help other people find the solution easily.

Best Regards,
Angelia

View solution in original post

2 REPLIES 2
Sean
Community Champion
Community Champion

Column =
SWITCH (
    TRUE (),
    'Table'[Car] >= 0  && 'Table'[Car] <= 9, 1,
    'Table'[Car] >= 10 && 'Table'[Car] <= 19, 2,
    3
)

Hi @Brad,

The formula @Sean posted is correct. I have test it, it returns the right result.

1.PNG

If you have have resolved your issue, please mark corresponding reply as answer, which will help other people find the solution easily.

Best Regards,
Angelia

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.