Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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:
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
Solved! Go to Solution.
Hi @Anonymous ,
Just try this:
Best regards
Icey
If this post helps,then consider Accepting it as the solution to help other members find it faster.
@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
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
Proud to be a Datanaut!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
72 | |
56 | |
38 | |
35 |
User | Count |
---|---|
83 | |
68 | |
59 | |
46 | |
45 |