在SSRS 2008中,我使用多值参数来为特定参数选择多个值。
在我的报告中,我有条件格式:如果选择了该项,则特定标签必须为蓝色;否则会保持黑色。我的直觉是尝试SQL方式 - 但我错了: - )
Switch(
Fields!groupType.Value = "firstValue", "#00ffffff",
Fields!groepType.Value = "secondValue", "Tomato",
Fields!groepType.Value = "thirdValue", "DimGray",
Fields!groepType.Value IN Parameters!p_myMultipleValueParameter.Values, "Blue"
)
处理此问题的正确方法是什么?
答案 0 :(得分:48)
我认为最干净的方法可能是以下
Array.IndexOf(Parameters!p_myMultipleValueParameter.Value, Fields!groepType.Value) > -1
每次运行连接可能效率低,因为分配额外字符串的开销很大,特别是如果函数将在大型列表上运行,或者每行一次运行一次,比如说。