Forum Discussion
Measure to Covert a Measure to a Constant Line
- 6 years ago
Hi rsbin ,
You may select on this chart visual, go to Analytics pane ->Average Line, put the [Benchmark] into Measure box, and set it more like below.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello mahoneypat ,
Thank you for your help to try to clarify.
Here is some sample data.
| Date | EquipmentIDCount | TotalVisits | Benchmark |
| 07/01/20 | 1989 | 9195 | 0.216 |
| 07/02/20 | 2574 | 15066 | 0.171 |
| 07/03/20 | 1881 | 12322 | 0.153 |
| 07/04/20 | 775 | 4899 | 0.158 |
| 07/05/20 | 603 | 3672 | 0.164 |
| 07/06/20 | 2822 | 14650 | 0.193 |
| 07/07/20 | 2702 | 14925 | 0.181 |
| 07/08/20 | 2778 | 14162 | 0.196 |
| 07/09/20 | 2726 | 14251 | 0.191 |
| 18850 | 103142 | 0.183 |
Using the following Measure, I get an answer of .183. The reason for my ALL function is to remove any Facility filters on the page and then I keep the date filter.
Benchmark = CALCULATE([EquipmentIDCount]/[TotalVisits], ALL(GeneralStatistics), DATESBETWEEN( 'Calendar'[Date],MIN('Calendar'[Date]), MAX('Calendar'[Date])))
When I plot the above on a line chart I get the following blue line which is expected.
My requirement is to be able to plot the .183 as a straight line constant. I have simply hardcoded the Constant for the purposes of this image.
Your suggested Measure, if I understand it correctly, calculates the Benchmark across my entire date range. This gives a total of .181 with my current dataset. I know it's close but that is just a coincidence with my selected date range.
Benchmark =
CALCULATE (
[EquipmentIDCount] / [TotalVisits],
ALL ( GeneralStatistics ),
ALL ( 'Calendar' )
)
The closest I have been able to come is to use the Average Line from the Analytics Pane, but the Average does not give me the exact result...it is close.
I hope this explanation better explains what I am after and does not further confuse the issue.
Again really appreciate your efforts on assisting me.
Best Regards,
Hi rsbin ,
You may select on this chart visual, go to Analytics pane ->Average Line, put the [Benchmark] into Measure box, and set it more like below.
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- rsbin6 years ago
Community Champion
Hello v-xicai
Thank you for this suggestion. As noted earlier in the thread, this is the best solution that I have come up with thus far.
I have tweaked it slightly to use a Card to show the correct data value, as the Average value is not as accurate.
Appreciate you taking the time to respond.
Best Regards,