Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
Solved! Go to 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
@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 ..
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.