Forum Discussion
PBIDEV_10
4 years agoHelper II
Customize Y axis data interval
Hello Gurus I have a graph where I show number of members per month. As you can see the change in the values is small and in the graph it shows like it has not change. Can I change the data range so...
- 4 years ago
PBIDEV_10 , from Aug 2021, release you can use measure in the start and end value of the axis. Create measure and use those
Start Value = minx(values(Table[Month]), [Measure]) -1
end Value = maxx(values(Table[Month]), [Measure]) +1
Use these in fx of start and end
amitchandak
4 years agoSuper User
PBIDEV_10 , from Aug 2021, release you can use measure in the start and end value of the axis. Create measure and use those
Start Value = minx(values(Table[Month]), [Measure]) -1
end Value = maxx(values(Table[Month]), [Measure]) +1
Use these in fx of start and end