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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ATsyurin
Regular Visitor

Conditional formatting for multiple columns with text values and numbers

Hello everyone.

 

I'm quite new in Power Bi and trying to get one type of formatting working.

I have a table with 10K+ rows and around 30+ columns. Most of the columns are week of the year, but in month format (Like 7-Jan, 14-Jan, etc). It also means, that report is live and have to be updated every week by refreshing updated data from excel. 

 

I'm putting below a picture with example. 

Row dataRow data

 

 

 

 

Lets say I have ships, which are going to sea from time to time. It's showed by numbers - how many trips they did.

They also go sometimes to sea in repair status, or sitting at dock with repair status. I have "R" for this.

 

I want to highlight all "R"s and also have possibility to sum totals at the right and bottom. 

 

 

2.jpg

 

 

 

 

 

Appreciate any help.

 

 

 

3 REPLIES 3
mahoneypat
Microsoft Employee
Microsoft Employee

Your week columns should be unpivoted in your query, and you should add a Date table to your model (if not already).  You can then use the week column from your Date table, and  this would let you apply conditional formatting (SEARCH for "R") to the measure that would go in the values area (as well as more easily do your other analyses).  The matrix would give you your row/column/grand totals.

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


amitchandak
Super User
Super User

@ATsyurin , Create a measure like this . And use that with field option under conditional formatting

example

color =
switch ( true(),
FIRSTNONBLANK(Table[commodity],"NA") ="commodity1" && sum(Table[Value]) >500,"lightgreen",
FIRSTNONBLANK(Table[commodity],"NA") ="commodity2" && sum(Table[Value]) >1000,"lightgreen",
/// Add more conditions
"red"
)

 

refer Color Measure - Conditional formatting
https://radacad.com/dax-and-conditional-formatting-better-together-find-the-biggest-and-smallest-num...
https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting#color-by-color-values

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak, thanks for quick reply.

 

Not sure if that measure will help to highlight cells, containing "R". 

All examples in web I saw, contains only 1 column, where cells could be highlighted based on their values. Is there a way to do it for miltiple columns in 1 batch? I have weeks year to date, which will be constantly updated.

 

I have no issues to make this in vba in excel, but moving thisng to PBi create difficulties...

 

Thanks

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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