Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/335.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 在ssrs中显示列组中的前1列_C#_Asp.net_Reporting Services_Rdlc - Fatal编程技术网

C# 在ssrs中显示列组中的前1列

C# 在ssrs中显示列组中的前1列,c#,asp.net,reporting-services,rdlc,C#,Asp.net,Reporting Services,Rdlc,我在SSRS中创建了一份报告。其显示如下 Product1 Product2 Product3 Product4 AEQ 1000 1000 1000 1000 IEQ 2000 2000 2000 2000 Prop 3000 3000 30

我在SSRS中创建了一份报告。其显示如下

        Product1        Product2        Product3        Product4
AEQ     1000            1000            1000            1000
IEQ     2000            2000            2000            2000
Prop    3000            3000            3000            3000
我只想显示此组中的顶部列

        Product1
AEQ     1000
IEQ     2000
Prop    3000
在RDLC报告中是否有这样的显示方式

=iif(RunningValue(Fields!strperiod.Value, CountDistinct, "PaymentReceived") = 1, False, True)