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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Customized column chart

Hi Everypne, I am looking for implementing below chart in Power bi, my target is 145, all values greater than 145, I want to show at one side in green color and other values less than 145,  I want to show in red color at opposite side, the all values are positive, is it possible in Power BI?

Bhumi_patel02_0-1722924000127.png

 

1 REPLY 1
qqqqqwwwweeerrr
Super User
Super User

Hi @Anonymous 

 

You can achieve by creating a measure: 

AdjustedValue =
IF(
    SELECTEDVALUE('Table'[Data]) >= 145,
    SELECTEDVALUE('Table'[Data]),
    SELECTEDVALUE('Table'[Data]) * -1
)
 
And add conditional formatting 
qqqqqwwwweeerrr_0-1723035491790.png

 

qqqqqwwwweeerrr_1-1723035564455.png

Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
Check for more intersing solution here: www.youtube.com/@Howtosolveprobem

Regards

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors