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
 Development Tools
 Reporting Services Development
 Rendering a cell background color

Author  Topic 

Ciupaz
Posting Yak Master

232 Posts

Posted - 2010-06-17 : 03:22:08
Hi all
in a Reporting Services 2000 (with Visual Studio 2003) I would need to render with a yellow background a cell of the table based on the name of the column to which the cell belongs and the first value in the row itself.
For example, if the column has heading the string "post" (case insensitive), and the line has the value in the first cell in the word "gross", then the cell must have the background yellow (almost as if it was a naval battle).
Does anyone have an idea of how to do?

Thank you.

Luigi

Ciupaz
Posting Yak Master

232 Posts

Posted - 2010-06-17 : 06:44:16
I'm trying in this way, but it does not work.

= IIF(InStr(Fields!Indicator.Value, "Gross"), IIF(InStr(Fields!Description.Value, "Post"), "Yellow", "Trasparent"), "Trasparent")


Go to Top of Page
   

- Advertisement -