RDL 中的彩色记录
我在创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您通常会在要更改的表格单元格的“Color”属性(或“BackgroundColor”属性)中使用条件表达式。
例如,要根据“价格”字段的值更改单元格的文本颜色,在报表设计器中,您需要选择该单元格,单击“属性”窗口中的“颜色”属性下拉列表,然后选择“表达”。然后输入如下表达式:
...其中“红色”和“黑色”与“颜色”属性列表中可用的列表中的颜色名称相匹配。这会将任何超过 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:
...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.