Forum Discussion
Trick for value too big
- Anonymous5 years ago
Hi admin_xlsior ,
Yes. You cannot use "log" option if there are some values that less than or equal to 0 in the field.
Values are all positive.
Changing the scale type from "linear" to "log" is a method to significantly reduce data fluctuations, you could have a try.
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey admin_xlsior ,
if you want to change the value you can do that with a measure.Something like:
MyMeasure = IF ([Measure] > 100000, 100000, [Measure])
Otherwise you can also limit the y-axis and override the max of the axis:
"Otherwise you can also limit the y-axis and override the max of the axis:"
This is what ended up working for me. Even log didn't create a chart that had readable bars for the lower values.
Setting the max value to a value much lower than the one outlier allowed the smaller value columns to be visible and kept the one extremely large column taller than the rest, albeit not proportionally, and with a data label easily understood to be much higher.
Thanks!