0
我有一個可以使用4個不同參數進行過濾的主控。我用一個iif語句來加入所有參數來過濾報告。如何將多參數應用於ssrs報告過濾器
當選擇一個以上的paramater我現在遇到的問題是,它往往爲第一個參數,而不是對所有 返回值我放慢參數表達如下:
表達
iif(IsNothing(Parameters!Div.Value)=0,Parameters!Div.Value
,iif(isnothing(Parameters!St.Value)=0,Parameters!St.Value
,iif(isnothing(Parameters!Sp.Value)=0,Parameters!Sp.Value
,Parameters!Hc.Value)))
值
=iif(IsNothing(Parameters!Div.Value)=0,Parameters!Div.Value
,iif(isnothing(Parameters!St.Value)=0,Parameters!St.Value
,iif(isnothing(Parameters!Sp.Value)=0,Parameters!Sp.Value
,Parameters!Hc.Value)))
任何幫助,將有助於
我想根據所選參數對報告進行過濾。目前,即使選擇了多個參數,它也只返回第一個參數的值。 – Nugeswale
我添加了部件來添加過濾器。 –