[H] Formula for getting the average percentage of average percentages

askJPB

New Member
Joined
May 6, 2019
Messages
1
Hi Guys,

A little bit of help.

=(B2*C2+B3*C3+B4*C4)/SUM(B2:B4)

This is my formula for getting the average percentage of average percentages but what is I have more than 3 rows that needs to average? Let's say 100 rows of average scores. How do I shorten my formula? Thanks!

[TABLE="class: outer_border, width: 300"]
<tbody>[TR]
[TD]SKILL[/TD]
[TD]COUNT OF EVAL[/TD]
[TD]QUALITY SCORES[/TD]
[/TR]
[TR]
[TD]VOICE
[/TD]
[TD]551
[/TD]
[TD]93.03%[/TD]
[/TR]
[TR]
[TD]EMAIL[/TD]
[TD]301[/TD]
[TD]91.58
[/TD]
[/TR]
[TR]
[TD]CHAT[/TD]
[TD]393[/TD]
[TD]92.82
[/TD]
[/TR]
[TR]
[TD]TOTAL
[/TD]
[TD]1245[/TD]
[TD]92.61[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the Board!

Use SUMPRODUCT, i.e.
Code:
=[COLOR=#ff0000]SUMPRODUCT(B2:B4*C2:C4)[/COLOR]/SUM(B2:B4)
 
Last edited:
Upvote 0
Hi & welcome to MrExcel.
How about
=SUMPRODUCT(B2:B4,C2:C4)/SUM(B2:B4)
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,175
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top