如何在SQL Server Reporting Services报表中为交替的行加阴影?
编辑:下面列出了很多很好的答案-从quick和simple到complex and comprehensive。 las,我只能选择一个...
最佳答案
转到表行的BackgroundColor属性,然后选择“表达式...”
使用以下表达式:
= IIf(RowNumber(Nothing) Mod 2 = 0, "Silver", "Transparent")
此技巧可以应用于报告的许多区域。
在.NET 3.5+中,您可以使用:
= If(RowNumber(Nothing) Mod 2 = 0, "Silver", "Transparent")
不寻找代表-我只是自己研究了这个问题,并认为我会分享。