RDLC 报告中的行着色

发布于 2024-12-02 18:52:40 字数 120 浏览 1 评论 0原文

实际上,我需要将 2 行着色为一种颜色,然后将下 2 行着色为另一种颜色,或者在 rdlc 报告中。 例如,第一行和第二行应为红色,第三行和第四行应为黄色。同样,第五行和第六行应为红色,第七行和第八行应为黄色......等等。

Actually I need to color 2 row one color and next 2 row another color ,alternatively in rdlc report.
For example 1st and 2nd row should be in red color and 3rd and 4th should be in yellow.Again 5th and 6th should be in red and 7th and 8th should be in yellow ...etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒人说梦 2024-12-09 18:52:40

这与您为每个备用行着色时所做的非常相似,您只需要对 Mod 计算进行一些小更改:

= IIf(RowNumber(Nothing) Mod 4 < 2, "FirstColor", "SecondCOlor")

这尚未经过测试,但应该足以让您继续下去。

查看之前的 SO 帖子以获取更多示例: 添加交替行SQL Server Reporting Services 报告的颜色

It is very similar to what you would do if you were coloring every alternate row, you just need a small change to the Mod calculation:

= IIf(RowNumber(Nothing) Mod 4 < 2, "FirstColor", "SecondCOlor")

This is untested, but should be enough to get you going.

Check this previous SO post for further examples: Add alternating row color to SQL Server Reporting services report

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文