我在Qlikview(版本11)中有一个列表框,其中包含4个可能的值:a,b,c和d。
我需要知道何时从列表框中同时选择b和c。有什么好办法呢? (有或没有宏) 有没有办法将当前选择放在变量中?
非常感谢你提前
答案 0 :(得分:2)
您可以使用为此目的创建的功能:
= GetCurrentSelections(Column)
或者,您可以计算当前的选择并以自己的方式连接它们:
= IF(
GetSelectedCount(Column),
'Selected: ' & CONCAT(Column, ' and '),
'No Current Selections!'
)
当然,Column
是列的名称。