Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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!
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
Hi @Jihwan_Kim ,
I think I like that "Log" one, but I wonder why my selection is only Linear ->
Any thought why ?
Thanks,
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.
Hi @admin_xlsior ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your problem.
Best Regards,
Yuna
@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/
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,
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.