I have 8 columns in ssrs report and their values are in decimal and its percentage like 15.23% . i want to fill background color to red if vales of these columns are greater than 15.00% or less than -15.00%
=IIF(ABS(Fields!ID__Change_from_Prior_cycle.Value) > 15.00 ,"Red", "No Color")
This command is not working.