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 |
bushfoot
Yak Posting Veteran
53 Posts |
Posted - 2008-11-14 : 14:40:26
|
I set the BorderStyle expression to =IIF((RowNumber("ReportData") Mod 2), Solid, None)When I try and preview the report I get an error message that Solid is not recognized. Any ideas? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-11-15 : 00:09:42
|
pass it as string and see=IIF((RowNumber("ReportData") Mod 2), "Solid", "None") |
 |
|
|
|
|