Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to filter points within a same layer with Articque ?

I have imported a set of points (POINTS) with the Articque module. I only want to represent a subset of these points (TYPE 1). How could I achieve this?

I have tried with the following syntax:   =({TYPE = {'1'}}POINTS)


Thanks for any help!

2 Replies
Anil_Babu_Samineni

You can use P() for possible or E() for Exclude

=Sum({<TYPE = P({<TYPE = {1}>} TYPE)>} Sales)

OR

=Sum({<TYPE = P({1<TYPE = {1}>} TYPE)>} Sales)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Kushal_Chawda

try

sum({<Type={"1"}>}POINTS)