Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sguerra2
Contributor II
Contributor II

AGGR FORMULA

Virtual table question
 

Hi Community!

I am working with a qliksense app that has the information as follows in one of my tables:

TABLE 1    
PERSON 1 PERSON 2PRODUCTSOBJECTIVEMAX OBJECTIVE
JUAN1PRODUCT 11212
JUAN1PRODUCT 2212
JUAN2PRODUCT 33434
JUAN2PRODUCT 2334
JUAN3PRODUCT 11233
JUAN3PRODUCT 33333
JUAN4PRODUCT 23264
JUAN4PRODUCT 26464
JUAN4PRODUCT 36464
JUAN5PRODUCT 1254
JUAN5PRODUCT 35454

 

I need to create a new table with person 1 as dimension and need to sumarize the max objective of each Person 2 and show it as a total for Juan.

The result should be summarizing each light blue result and in this case is 197

PERSON 1RESULT
JUAN197

 

I tried with AGGR but without success.. 

 

aggr(SUM(Max OBJECTIVE),PERSON 1,PERSON 2)

Will really appreciate your help to sort this out.

 

Thanks!!!

 

Sofía

1 Solution

Accepted Solutions
PradeepK
Creator II
Creator II

Try this

Aggr(
	SUM(
    	Aggr(
        	Max(OBJECTIVE)
            ,[PERSON 1],[PERSON 2]
            )
       ) 
    ,[PERSON 1]  
)

View solution in original post

2 Replies
PradeepK
Creator II
Creator II

Try this

Aggr(
	SUM(
    	Aggr(
        	Max(OBJECTIVE)
            ,[PERSON 1],[PERSON 2]
            )
       ) 
    ,[PERSON 1]  
)
sguerra2
Contributor II
Contributor II
Author

Thanks @PradeepK ! it is working 🙂

 

Best Regards.

 

Sofía