Quantcast
Channel: SQLServerCentral » Reporting Services » Reporting Services » Latest topics
Viewing all articles
Browse latest Browse all 2791

Unable to create a working indicator

$
0
0
I am trying to create an (Shape) indicator for a SSRS report whereby the indicator will turn red if there is a callfrom a manager and then stay Green if there is no call.I have created a query to be used on the report: SELECT COUNT(*) AS CallsFROM CALL INNER JOIN Z_UserAlert ON CALL.CALL_USERNAME = Z_UserAlert.UserNameWHERE (CALL.CALL_STATUS = 'Open')I have dragged an indicator on to the report. On the Indicator states I have set the color red to Start at 1 and End at 100.The indicator Green starts at 0 and ends at 0.On the value i have created an expression as follows: = IIF(Sum(Fields!Calls.Value) >= 1, "Red", IIF(Sum(Fields!Calls.Value) < 1, "Green", "Green"))I have ran my report but what is happnening is that the indicator is not turning to any color. The box is just clear.Does anyone know where I am going wrong?

Viewing all articles
Browse latest Browse all 2791

Trending Articles