简体   繁体   中英

Merging data from 3 pie charts into 1 pie chart

please help with this issue. I'm in desperate need, As you can see in the below link, I have 3 pie charts for October, November? December - how can I merge the info from these 3 charts to collate into 1 summary pie chart?

https://docs.google.com/spreadsheets/d/1_eSR50QFFzWiP1YK1vb_VCx4cpXgZPJ9p1PJqFh-XiE/edit#gid=0

HELP!!!!

Here you can find my answer https://docs.google.com/spreadsheets/d/1U0sGonQrZkasDkGIR5NGPJkkMk7SDCYNAcoiaU_gv1s/copy

I see that pie charts use only top 5 of MOST used things. To combine 3 months you need to sum all the data for all months and get TOP5 of the sum. I use query function for this:

=query({B2:C6;F2:G6;J2:K6},"select Col1, sum(Col2) group by Col1 order by sum(Col2) desc limit 5 label sum(Col2) ''",0)

You need to repeat this for each top5 set.

Then you make a new pie chart based on combined data:

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM