Formating text depening on its value - sql server reporting services
The formula below will format a field to red if it is a negative number. The formula goes into the reports Font color property for the field you are highlighting.
=IIF(Fields!FieldName.Value<0, "Red","Black")
Don't forget the...
[More]