Expressions on background colour SSRS
How to write the expression to change the background colour based on parameters
any can give me the syntax
thank you.
July 2nd, 2011 1:46pm
try the following
paste it in the background property on the property page of the text box or whatever
=iif(1=0,"White","Red")
there is even an option of expression editor as the first color in the dropdown of the background property
--------------------------------------------------------
Surender Singh Bhadauria
Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2011 1:50pm
Hi,
1. Select the cell where you want to change the background color and click F4.
2. You can see properties pane in the right side.
3. In the go to the BackgroundColor and select expression and paste the below expression.
=IIF(Parameters!PName.Value = "SomeValue", "Green", "Red")
Hope its clear & helpful....
Pavan Kokkula Tata Consultancy Services.
July 3rd, 2011 4:38am


