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: 
Not applicable

Help with set analysis needed

Hi all

sum({<[Fact.Type] = {'Open_Orders'}, [Fact.Type] = {'Sales'},[Fact.Type] = {'ThirdParty'}>}Fact.Net_Rev_EUR)

this is the formula I have, unfortunately QlikView calculates only the last Fact.Type (ThirdParty). When I take out "ThirdParty", then it calculates the sum of "Sales" ....

Strange, isn't it?

thanks for your help

Oliver

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

sum({<[Fact.Type] = {'Open_Orders','Sales','ThirdParty'}>}Fact.Net_Rev_EUR)

View solution in original post

4 Replies
tresesco
MVP
MVP

Try like:

sum({<[Fact.Type] = {'Open_Orders','Sales','ThirdParty'}>}Fact.Net_Rev_EUR)

ashwanin
Specialist
Specialist

Hi

Try this.

sum({<[Fact.Type] = {'Open_Orders','Sales','ThirdParty'}>}Fact.Net_Rev_EUR)

anbu1984
Master III
Master III

sum({<[Fact.Type] = {'Open_Orders','Sales','ThirdParty'}>}Fact.Net_Rev_EUR)

Not applicable
Author

cool - sometimes its so easy but it's just hard to see 🙂

Thanks a lot

Oliver