Link to home
Start Free TrialLog in
Avatar of vbnetcoder
vbnetcoder

asked on

SSRS chart Y axis

I want to update this y axis so that it makes sense for my data ... probable 0 through 100% instead of 0 -> 80000 as it is showing noe
Avatar of Nico Bontenbal
Nico Bontenbal
Flag of Netherlands image

What y-axis?
You can use this expression for the value to calculate the percentage of the maximum value in the dataset:
=Fields!nr.Value/max(Fields!nr.Value,"dset")

Open in new window

nr is the field name "dset" the name of the dataset. But you can also divide by 80000 to use that value as the 100% always. This will give you values from 0 to 1. Set the format of the y axis to Percentage to show this value as a percentage. You can set the minimum and maximum properties of the axis to 0 and 1 to always have 0 to 100% on the axis.
Avatar of vbnetcoder
vbnetcoder

ASKER

Where do i put these expressions?
ASKER CERTIFIED SOLUTION
Avatar of Nico Bontenbal
Nico Bontenbal
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ty