我刚刚开始学习QlikSense,我想知道如何在数据加载编辑器中排除值。
具体来说,我想从Orders列中排除Product X,Product Y和Product Z.
我尝试过放置where
语句,但它无效。
答案 0 :(得分:1)
可以想到实现这个目标的方法:
选项1
只列出不需要的订单
Where
Orders <> 1
and Orders <> 2
and Orders <> 3
选项2
使用match功能
Where
Match(Orders, 1, 2, 3) = 0
选项3
使用exists函数根据另一个表中的记录过滤记录
OrdersToExclude:
Load
*
Inline [
Orders
1
2
3
];
FiteredData:
Load
*
Resident
RawData
Where
Not Exists( ToExclude, Orders )
;
Drop Table OrdersToExclude;
表Join
也可以使用