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 |
eguthrie
Starting Member
2 Posts |
Posted - 2008-02-05 : 13:27:28
|
I've been able to create a green-bar report with alternating row colors by entering this code in the BackgroundColor property of the row: =iif(RowNumber(Nothing) Mod 2, "PaleGreen", "White")But I now have a report that contains a subreport in one of the cells in the row. The BackgroundColor property is no longer available when there is a subreport in the row.Does anyone know how I could create the same alternating color effect in this situation?Thanks.Evelyn |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-02-06 : 09:25:14
|
I think you have to set it from subreport |
|
|
|
|
|