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
Anonymous
Not applicable

Formatting and Conditional Formatting

Hi guys, 

 

i have a table with a value column. I then Format the value colum since the values are high and not optimal to read. Then i want to apply conditional formatting on the formatted column. But that does not work because probably due to formatting it changed the data type of the column:

 

Unbenannt.JPG

Formatting of Measure column is : FORMAT(..,"#,##,,.0 Mio.")

 

How can i achieve that values of column one are displayed as in Measure column but with the bars?

 

Thanks

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Just try this:

format.gif

 

 

Best regards

Icey

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

View solution in original post

3 REPLIES 3
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Just try this:

format.gif

 

 

Best regards

Icey

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@Anonymous , this has made measure as text. that is why it is not working

see if you can do this formatting in Model view

https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-custom-format-strings

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

Hi @Anonymous ,

 

You need to set up two measures, one for the consitional formatting, one for displaying in your visuals.

 

For example:

_sales = SUM(myTable[Sales])

_salesFormat = 
FORMAT(
    [_sales],
    "#,##,,.0 Mio."
)

 

You would use the [_salesFormat] measureto displaythe values as you require on your report, but you would use the [_sales] measure when applying a measure for the conditional formatting to work from.

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




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.