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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
suyogbi
Frequent Visitor

Alternating colours for BAR Graph with single measure

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.

 

i created a rank on customer based on sales amount,

Rankcolumn=rankx(allselected(customer[customername]),sales[Salesamount],,,Dense)

 

Used this measure as below to calculate conditional formatting field .

color format field= 

var -cl=mod([Rankcolumn],2)

return

if(cl=1,"colour1","colour2")

 

I used this color format field measure in data colours -- format by-- based on field

this is working perfectly untill there are ties in rank, if there is tie then bar shows same colour for that ranks.

is there any work around for this?

 

Thanks in advance,

Suyog

 

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@suyogbi 

Since you have ties in your ranking, the Rank calculation has to break it first. I created the following ranking measure and used it in your CF measure. The file is attached below my signature.

Rank = 
VAR __customernamerank =
    ADDCOLUMNS (
        ALLSELECTED ( Customers[Customer Name] ),
        "RankCust",
            RANKX (
                ALLSELECTED ( Customers[Customer Name]),
                CALCULATE ( MAX ( Customers[Customer Name] ) )
            )
    )
VAR __maxcust =
    MAXX ( __customernamerank, [RankCust] )
VAR __customerrank =
    ADDCOLUMNS (
        __customernamerank,
        "Rank",
            RANKX ( __customernamerank, [Sales Amount] * __maxcust + [RankCust] )
    )
RETURN
IF( 
    HASONEVALUE(Customers[Customer Name]),
    MAXX(FILTER(__customerrank,Customers[Customer Name] = MAX(Customers[Customer Name])),[Rank])
)

 

Fowmy_0-1628627006461.png

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@suyogbi 

Since you have ties in your ranking, the Rank calculation has to break it first. I created the following ranking measure and used it in your CF measure. The file is attached below my signature.

Rank = 
VAR __customernamerank =
    ADDCOLUMNS (
        ALLSELECTED ( Customers[Customer Name] ),
        "RankCust",
            RANKX (
                ALLSELECTED ( Customers[Customer Name]),
                CALCULATE ( MAX ( Customers[Customer Name] ) )
            )
    )
VAR __maxcust =
    MAXX ( __customernamerank, [RankCust] )
VAR __customerrank =
    ADDCOLUMNS (
        __customernamerank,
        "Rank",
            RANKX ( __customernamerank, [Sales Amount] * __maxcust + [RankCust] )
    )
RETURN
IF( 
    HASONEVALUE(Customers[Customer Name]),
    MAXX(FILTER(__customerrank,Customers[Customer Name] = MAX(Customers[Customer Name])),[Rank])
)

 

Fowmy_0-1628627006461.png

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

suyogbi
Frequent Visitor

@Fowmy 

Thank you for reply👍. your solution fulfilled my requirement.😊😊

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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