italicize text of a particular row in a group of a matrix in SSRS

99封情书 提交于 2019-12-13 00:55:52

问题


I have created a SSRS 2008 report.I have created a matrix.I want to make one of the rows text to be italic based on condition in row group.I tried with below expression in font style of row group. iif((Fields!Client.Value)="abc" ,"Italics","Default").But it is applying to all the rows in that group. Can anyone help me how to italicize text of a particular row in a group .


回答1:


I have just tried the following successfully in SSRS2005 - so think that it should also work for you.

In Fontstyle, for the row group, put

=IIF(Fields!Client.Value = "abc", "Italic", "Normal")

I tried different values in one of my reports (Using a different field) but successfully italicised the text of a single row.



来源:https://stackoverflow.com/questions/8703755/italicize-text-of-a-particular-row-in-a-group-of-a-matrix-in-ssrs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!