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

Perform division of grand total in pivot table Qliksense

Hello All,

I have below table :-

Aspiring_Developer_0-1649778651547.png

My requirement is I am creating a new visual and performing the below calculation:-

566/107 =5.28

187/8=23/37

167/4=41.75

356/1=356

I am able to do this in the new visual  using below expression:-

=Aggr(Sum(TOTAL <AGE_BAND_WKG> OPEN_WKG_DAYS), AGE_BAND_WKG)
/

Aggr(Count(TOTAL <AGE_BAND_WKG> ISSUE_NO), AGE_BAND_WKG)

Aspiring_Developer_1-1649778797117.png

 

Now, I am unable to the same division for the grand total of rows and columns available in the pivot:-

Aspiring_Developer_2-1649778908361.png

1276/120 =10.63 . I wish to populate this value in the same table pasted above where i am showcasing the remaining divisions.

Can anyone please help ? Not sure, if it is possible to do ? if not, is there any alternate for this ?

Thanks in advance

 

Labels (3)
1 Reply
vinieme12
Champion III
Champion III

That would just be

for grand totals

=Sum(TOTAL OPEN_WKG_DAYS)
/

Count(TOTAL  ISSUE_NO)

 

even with your first expression you don't need AGGR()

=Sum(TOTAL <AGE_BAND_WKG> OPEN_WKG_DAYS)
/

Count(TOTAL <AGE_BAND_WKG> ISSUE_NO)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.