Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SSRSで、パラメーター値のドロップダウンに2つの列を表示する方法は? たとえば、パラメーターのドロップダウンに製品 ID と名前を表示する方法は? 前もって感謝します
Parameterを設定するために使用しているDatasetにandを連結するCalculated Fieldを作成します。ProductIDProductName
ProductID
ProductName
たとえば、Datasetの場合:
次の式で呼び出される新しい計算フィールドを作成しました。ProductIDName
ProductIDName
=CStr(Fields!ProductID.Value) & ": " & Fields!ProductName.Value
この新しいフィールドを使用して、Parameterを設定します。
最終結果: