Forum Discussion

suyogbi's avatar
suyogbi
Frequent Visitor
5 years ago
Solved

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 co...
  • amitchandak's avatar
    amitchandak
    5 years ago

    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