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.

 All Forums
 SQL Server 2008 Forums
 SSIS and Import/Export (2008)
 Background Color in SSRS based on column condition

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 reports

if 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")
Go to Top of Page
   

- Advertisement -