Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Marc_Kaiser
Partner Ambassador
Partner Ambassador

aggr?

Hi there

I have the follwowing source table and have not found yet an approach how to achieve the expected result:

Source table
MainGroup Subgroup Group Member Value
Main1 Sub1 Group1 Tony 100
Main1 Sub2 Group2 Andrew 100
Main1 Sub3 Group3 Tony 100
Main2 Sub1 Group4 Tony 200
Main2 Sub2 Group5 Tony 200

The value is related to MainGorup and Member - no matter what Subgroup or Group is present.
No matter how many Subgroups / Groups are present, the member only pays once per MainGroup.

So, the following result table is expected.

Result table
MainGroup Member Value
Main1 Tony 100
Main1 Andrew 100
Main2 Tony 200
Sum 400

Any idea how to set up the needed expression?

Thanks for your help!

Marc

4 Replies
Not applicable

Hi Marc Kaiser,

I got your problem. make the expression like the below.

=sum(distinct {MainGroup & Member}, Value)

or

=sum(distinct{MainGroup and Member},value)

if it is not working, please kindly ignore this reply..

pat_agen
Specialist
Specialist

Hi Marc,

if the value is always teh same for a MainGroup then using sum(distinct Value) in th expression will do the trick.

look at the attached qvw.

suniljain
Master
Master

Load

Maingroup,

Member,

sum(Value) as Value

Resident Sourcetable group by Maingroup,Member;

Marc_Kaiser
Partner Ambassador
Partner Ambassador
Author

Thank you all!

After reading and implementing all of your input, I realized I wasn't accurate enough.

Attached the app / expression with the solution I was looking for. AGGR was the solution 🙂

Marc