RDL 中的彩色记录

发布于 2024-10-11 14:00:25 字数 120 浏览 3 评论 0原文

我在创建 RDL 报告时遇到一些问题。 我希望在某些情况下,当我在 Excel 中导出该报告时,某些记录在 Report. 以及 execl 中以红色显示。 任何人都可以帮我做到这一点吗..? 我正在使用报告服务器 2005。

I facing some problem while creating RDL report.
I want on certain condition some records to be shown in red colors in Report.as well as in execl when i export that report in excel.
Can any one plz help me to do this..?
Iam using Reporting server 2005.

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

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

发布评论

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

评论(1

梦里人 2024-10-18 14:00:25

为此,您通常会在要更改的表格单元格的“Color”属性(或“BackgroundColor”属性)中使用条件表达式。

例如,要根据“价格”字段的值更改单元格的文本颜色,在报表设计器中,您需要选择该单元格,单击“属性”窗口中的“颜色”属性下拉列表,然后选择“表达”。然后输入如下表达式:

=iif(Fields!Price.Value >= 5000, "Red", "Black")

...其中“红色”和“黑色”与“颜色”属性列表中可用的列表中的颜色名称相匹配。这会将任何超过 5,000 的价格变为红色,而将其他价格变为黑色。

To do this you'll generally use a conditional expression in the "Color" property (or the "BackgroundColor" property) of the table cell(s) you want to change.

To change the text colour of a cell based on the value of the field "Price", for example, in the Report Designer, you'd select the cell, click on the "Color" property drop-down in the Properties window, then choose "Expression". Then enter an expression like:

=iif(Fields!Price.Value >= 5000, "Red", "Black")

...where "Red" and "Black" match up with colour names in the list available from the Color property list. That'll turn any price over 5,000 red, and leave the others as black.

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