Forum Discussion
Column Chart with colored target range
Here's code I used to calculate the 75th percentile...
Observation Value 75th Percentile =
PERCENTILEX.EXC(
FILTER(
ALL(Observations),
Observations[ObservationType] = SELECTEDVALUE(Observations[ObservationType])
),
Observations[Value],
.75
)
If what you're looking for if just a constant 75% and 85%, just create a measure like this
Percent75 = .75
Percent85 = .85
To get the dotted lines, in the Formatting menu for the visualization, go to Shapes, Customize Series and then play with the settings
Thanks, that helped a lot! I was indeed merely looking for the ".075" measure 🙂
One thing I couldn't manage is to get the dotted lines across the entire X axis (starting from the y axis and over to the very right). Is that somehow possible? It looked like on the screenshot you provided earlier!
- littlemojopuppy6 years agoCommunity Champion
They should show up when you drop the measure into the visualization. Can you share a screen snip of what's happening?
- flex996 years agoHelper I
I tried to attach a screenshot but it didn't work the last time. Here we go again - hope it works...
- littlemojopuppy6 years agoCommunity Champion
They're measures so they're going to be reflected with the X axis as well...