Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
From the following post from swuehl
I was wondering how those STAR filfers "*" can be applied to SET ANALYSIS.
Specially the one that match the following example from that post
I tryed to use the following filter for SALES MEASURE, but it din´t work.
SUM ({<DIMENSION1={"*New*&*rk*"}>} SALES)
Can any one help me that? Expected filter result is as the one provided above. Just filter strings that have both New and rk at the same time. Please only provide Qlik Sense Set Analysis solutions, I can´t wiew Qlik view apps, thanks.
Let's take a very simple example here
Table:
LOAD * INLINE [
Text, Sales
Airport Newark, 50
New York, 20
Dallas, 36
IGI, 12
];
When I used this
Sum({<Text = {"*New*rk*"}>} Sales)
I see this
=
Is this not what you wanted to see?
Have you tried this?
Sum({<DIMENSION1 = {"*New*rk*"}>} SALES)
Thanks but it didn´t work as well.
Let's take a very simple example here
Table:
LOAD * INLINE [
Text, Sales
Airport Newark, 50
New York, 20
Dallas, 36
IGI, 12
];
When I used this
Sum({<Text = {"*New*rk*"}>} Sales)
I see this
=
Is this not what you wanted to see?
The problem I had in my data was cause for a different order in the filter
To be more clear, using the same information in your example, what do not work is the following.
Sum({<Text = {"*rk*New*"}>} Sales)
But the following you are right, it does work.
Sum({<Text = {"*New*rk*"}>} Sales)
Thanks for your help stalwar1
Is there a reason you wanted to use Sum({<Text = {"*rk*New*"}>} Sales)?