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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
fzalexanderjohn
Creator
Creator

Make set analysis behave like a selection?

I have a formula like so:

 

sum(
{<[Belegfluss.Zeitspanne Monate] = {"<=$(=vIntervallMonate)"}, [CE11000.Verkaufsbüro] -= [Belegfluss.Verkaufsbüro], [Belegfluss.Verkaufsbüro] = {"*"}>}
[CE11000.Umsatz]
)

 

The first two filters work fine, but  [Belegfluss.Verkaufsbüro] = {"*"} has no effect. Yet I I select all values in the table in the worksheet, I get the correct number.

How can I tell qlik sense to mimic that behaviour?

Labels (2)
1 Reply
traceycurran
Contributor II
Contributor II

Hi

Are you trying to select everything (all) with[Belegfluss.Verkaufsbüro] = {"*"}

 

if so it should be [Belegfluss.Verkaufsbüro] =,

 

(no selection)

 

So your sum would be this

sum({<[Belegfluss.Verkaufsbüro] =, [Belegfluss.Zeitspanne Monate] = {"<=$(=vIntervallMonate)"}, [CE11000.Verkaufsbüro] -= [Belegfluss.Verkaufsbüro]>}[CE11000.Umsatz])

I hope this helps

Tracey