How to use expression in the indicator tool in SSRS to choose the start point and end point. Suppose I have person table with person_id and in my report I need to show the person_id column and indicator based on the person_id.
For example for person_id from 0 - 10 I need to show red, 10 - 20 as Green. Instead of hardcoding the value i need to use the expression. I tried the following expression as
In start expression =Fields!person_id.Value>0 and End expression =Fields!person_id.Value<10.
Again for the second set.
In start expression =Fields!person_id.Value>10 and End expression =Fields!person_id.Value<20
but all the time i am getting the same color in my report.