Forum Discussion
LM24
2 years agoNew Member
Set Custom Axis Power BI Sparkline
I have a table in Power BI set up with sparklines showing a how a rating (on a scale of 0 - 100) has changed over time by customer, however as each sparkline uses its own data to set the axis, the vi...
rajendraongole1
2 years agoSuper User
Hi LM24- sparklines in Power BI to have a fixed minimum and maximum value.
NormalizedRating =
DIVIDE(
[RatingMeasure] - 0,
100 - 0
)
Try the above measure and pass it measure value on y axis and date or required field on x axis.
Hope it works. Please check
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
- LM242 years agoNew MemberHi - Thank you, however I am unclear how to put your solution into my Power BI?