如何识别列组中的第一列?

时间:2015-09-15 23:53:41

标签: reporting-services ssrs-2008 grouping ssrs-expression

是否有表达式或无论如何识别列分组中的第一列?我希望行中的第一列具有一定的值,其余的则另一列。

像这样:

If column in group = first, then firstValue, else otherValue

我一直在寻找并且无法找到答案。

1 个答案:

答案 0 :(得分:0)

您可以使用SSRS中的First函数获取第一列值。

=IIF(FIRST(Fields!Column.Value, "ColGrp") = "First", "FirstValue",  "otherValue")

或者你也可以尝试这样的事情,你不必明确定义第一列的值。

=IIF(FIRST(Fields!Column.Value, "ColGrp") = Fields!Column.Value , "FirstValue",  "otherValue")