问题描述
有一种方法,在SSRS中只有一行(Tablix)突出显示该行是否包含用户的重要信息。
例如,我想要第一行以粗体显示,我可以根据我的条件设置背景颜色属性或字体粗细。我可以使用ROW_NUMBER()来检查它是否是第一行。像
= IIF(ROWNUMBER("yourDatasetName")= 1,"#FF0000",没什么)的东西是什么)b $ b但是我忘记了我可以导航到这一点的地方我提供了这些信息。 请帮忙。
There a way, in SSRS to have just one row on a table (Tablix) highlighted if that one row has important information for the user.
Let's say, for example, I wanted the first row in bold, I could set the background color property or font weight based on whatever my criteria is. I can use ROW_NUMBER() to check if it's the first row. Something like
=IIF(ROWNUMBER("yourDatasetName") =1, "#FF0000", Nothing)
But I forgot where I can navigate to this point where I put in this information. Please help.
这篇关于在SSRS Visual Studio 2017中,我在哪里可以找到“= IIF”的位置。 Tablix的陈述?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!