Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
kond.mohan
Posting Yak Master
213 Posts |
Posted - 2014-03-04 : 02:40:04
|
Hi,I have created one report in Ssrs(2008).one my column column is Empsal,we need to change the background color based on empsal colukn(if empsal <5000)how to make these changes in ssrs reportsif anybody know pls guide on the same |
|
shilpash
Posting Yak Master
103 Posts |
Posted - 2014-03-06 : 15:22:42
|
Go to cell's properties in the property window.You will see background property.Just use this expression in the background property--(for eg for green background)=IIF(Fields!empsal.Value<5000,"Green","No Color") |
|
|
|
|
|