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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
abukapsoun
Post Patron
Post Patron

Renaming field based on criteria

Hi Gents,

 

I have the following table:

col1 col2

A       R

B       S 

C       T

D       W

 

I would like to rename the field in Column1 based on the following:

if col2 value = R or S or W then col1 value is Blue

and if col2 value = T or ..or.. then col1 value is Red

 

Thanks,

 

4 REPLIES 4
amitchandak
Super User
Super User

@abukapsoun , You can create a new column in DAX

 

col3 = if( [col2] in {"R", "S", "W"},"Blue", "Red")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thanks, is there an elseif  because I have different criterias, i.e Blue, Red, Green, Purple.. 

Or i am thinking with the conditional column, but how to enter multiple value in the value field so I dont create 1 clause per value

 

@abukapsoun , In DAX you have Switch

 

col3 = Switch( True(),

[col2] in {"R", "S", "W"},"Blue",

// Add more conditions

"Red")

Refer my Video:https://www.youtube.com/watch?v=gelJWktlR80

Power query is if then else  and you can have if again in then or else

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
abukapsoun
Post Patron
Post Patron

In the conditional formatting, how can I specify the "Or" in the value field, so I can don't create a clause per value?

Thanks,

 

abukapsoun_0-1613379752753.png

 

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 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.

Top Solution Authors
Top Kudoed Authors