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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
suyogbi
Frequent Visitor

Alternating colours for BAR Graph with single measure without any conditional formatting

Hi All,

 

I have a requirement where i need to show alternating colour in bar graph which has only single measure (salesamount) in Values and the AXIS(Customer) around 5000 Customer. there is no condional formatting requirement, just need to show 2 diff colours in alternating format.

 

any work around for this?

 

Thanks in Advance.

Suyog

1 ACCEPTED SOLUTION

@suyogbi , Try like  

sales amount

Rank = rankx(allselected(Table[Customer]), [sales amount])

 

// sales amount is a measure  

 

Color = 

var _1 = mod([Rank],2) 

return 

if(_1,=1, "Blue", "Green")

 

You need use conditional formatting using field value option with this measure 

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@suyogbi , No, you have to use conditional formatting to get this.

 

May be create a rank on customer and measure and use mod with 2 and us that in conditional formatting

@amitchandak how can we achieve this with conditional format?  i just need to show alternating colour bars. i dont have any specific condition. 

@suyogbi , Try like  

sales amount

Rank = rankx(allselected(Table[Customer]), [sales amount])

 

// sales amount is a measure  

 

Color = 

var _1 = mod([Rank],2) 

return 

if(_1,=1, "Blue", "Green")

 

You need use conditional formatting using field value option with this measure 

@amitchandak  how to handle the ties here? ties are giving same color in graph.

both skip and dense not helping .. 

 

@amitchandak  Thank you so much. this solves my requirement.😊 cheers.. 👍

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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