Forum Discussion
Trick for value too big
Hello guys,
Looking for idea or trick, let say in a column chart of months, when we have data value which is too big in particular month only, is there a way to make it more nice visibility, but still not loosing the scale of one another.
Take example below:
The value on Oct 2020 indeed very big, 2.5M compare with other months which is only 15,000 or 22,000, but still because it's too small, it is hard to recognize that actually we has some "movement" in months other than Oct 2020.
Any trick to make it more visible or nicer to look.
Thanks.
- 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.
8 Replies
- selimovdMost Valuable Professional
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:If you need any help please let me know.If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍Best regardsDenisBlog: WhatTheFact.biFollow me: twitter.com/DenSelimovic- joannmFrequent Visitor
"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!
- amitchandakSuper User
admin_xlsior , you have the option to choose the "Log" scale
refer to this blog for steps, if needed
https://blog.mi4.com/analytics/power-bi-logarithmic-linear-axis/
- admin_xlsiorPost Prodigy
Hi amitchandak ,
Thanks, for the link. So does it mean to say, it cannot be zero or negative to use "Log" ?
Coz I just read, if it is not > 0 return BLANK()
Thanks,
- Jihwan_KimSuper User
Hi, admin_xlsior
Please try for the below.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
- admin_xlsiorPost Prodigy
Hi Jihwan_Kim ,
I think I like that "Log" one, but I wonder why my selection is only Linear ->
Any thought why ?
Thanks,
- AnonymousNot applicable
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.