SSRS Arrow Indicators Start and Ends - reporting-services

I have a difficult time figuring out the ranges for SSRS indicators.
I'd like the following logic:
Green Arrow = Any value greater than 6%
Yellow Line = Any value between 0% and 5%
Red Arrow = Any negative value.
I have the following currently, but it does not work.
Any assistance would be appreciated.
EDIT----
Current output show below to highlight problem:
As you can see the negative percentage shows with a yellow dash. I'd like any negative value to be red, only zero through 5% should be yellow, and anything higher than 5% should be green.

The problem was the "States Measurement Unit" selection within the Values and States properties on the indicator. I had it set to percentages, but the values I was using were numeric. Setting the "States Measurement Unit" to to Numeric and having my value evaluate to percentages solved the issue. The following is my end result, negative percentages to 0 are red, percentages between 1 and 5 are yellow, and percentages between 6 and 900 are green:

Related

Showing gridline at value 0 only

I am having bubble graph which shows two values:
YTD position
% growth from previous year
Both sets of values are ranging from negative to positive.
I would like to show gridlines (horizontal and vertical) only at value 0, so I have bubbles in 4 quadrants.
I have tried in "visibility" of the gridlines, but it didn't work:
iif(Fields!YTD_Actual.Value=0,"True","False")
Another option would be to differently format gridlines, but it didn't work either.

SSRS Indicator arrow percent change

I am trying to apply an indicator arrow that feeds from a variance Percentage as per screenshot. The only options available within the indicator require me to set a start and end, however. The column that I wish to reference merely shows % change. This can be positive 0.9% for example or negative -2.3%. When working with the percentage change in this way how do you apply a start and end? Ideally, I would like simply to say green up arrow if >0 or red down arrow if less than 0. (right pointing orange arrow if 0 to show no change). Have been google(ing) for a couple of hours now and cannot find a working solution.
The arrows do not work as all currently show Green and up.
This looks like it will solve your issue:
MSDN
It basically doesn't use the values but has an expression for the colour instead.

SSRS hide negative values from scale

I need to hide specific values from the scale in a line chart.
The report should load from -10 to the automatic Maxim but Hiding negative values.
My series are all positive so I can't base my expression on it.
I thought to colour these negative values of white or no colour but I don't know the way to get the current scale value.
Temporarily I checked the "hide first and last labels along this axis" checkbox but it is not the way because It is subject to rescale showing other negative values for example as second element.

X-axis and data point labels on SSRS report are incorrect

The X-axis should show intervals from 0-100% with 10% interval which instead is showing in 1000% to 10000%. And the bar chart should show data points in % which instead is showing 0.######. Please help on how to set this up right. I fixed the Data points by *100 and rounding up to 2 decimals but is it the right way to do it.
Remove the *100. If you format the output as percentage then it will deal with this for you.
0.1 is equal to 10%
1 is equal to 100%

Percentages in SSRS Chart

EDIT: The chart is fixed when I use a stacked chart instead of a stacked percentage chart, but this still doesn't tell me what is wrong with using the percentage chart.
I have a stacked percentage chart which is going from 0 to 10000% instead of 0 to 100%. It appears as if the values are formatted correctly (they add up to 1.01 due to rounding), and even dividing all the values by 100 in the query does not change it.
This is how the chart renders:
with the following Vertical Axis Properties:
I have a table below (with identical number formatting but with 2 percentage points), however that displays as expected:
Finally, here is the raw data set with an additional sum column not reflected in SSRS:
Has anyone come across this issue before? If I manually set the range of the chart from 0-100% (0-1) I can only see that bottom blue series.
Yep. I've seen exactly this. The numbers that the percent chart axis generates are in the range 0 to 100. But when you apply the number formatting as a percent, then the numbers are multiplied by 100 for display.
The trick to fix/work around this is to set the display format to only add the percent sign, not really format the number as a percent. Happily, this requires just one character:
In the Number format for the axis, switch the Category to "Custom." If you just switched from Percentage, you will see something similar to 0%.
Insert a backslash before the percent symbol: 0\% to indicate that you need a literal percent symbol, not to format the number as a percent (multiplied by 100.)
Voila.