The gauge’s in SSRS do not have an ‘auto’ option like the charts do. I wanted the ‘min-scale-vale’ on the 500 boundary below the lowest value and the ‘max-scale-value’ that was on the 500 boundary above the maximum value.
For example …
ytd-Balance / ytd-Budget / min-scale / max-scale
865 / 1022 / 500 / 1500
2690 / 325 / 0 / 3000
5346 / 7453 / 5000 / 7500
… here’s the expressions …
=iif(Fields!bal.ValueFields!bud.Value, Int(Round(Fields!bud.Value/1000/1000,2)*2)*500,nothing))
=iif(Fields!bal.ValueFields!bud.Value,Int(Round(Fields!bal.Value/1000/1000,2)*2+1)*500,nothing))