我的列有两个值Import
和Export
在条形图中,我只想包含Import
,如何在表达式中过滤它?
是吗
<type = {'Import'}>
我怎样才能在Qlik中完成?
答案 0 :(得分:0)
要获得“Imports”的数量,请使用:
count({<type={'Import'}>} Import)
OR
count(if(type='Import', Import))
后者在BIG数据集上较慢,但 NOT 忽略“type”字段中的选择有其优势。
使用你的用例