[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!

SKILLCOUNT OF EVALQUALITY SCORES
VOICE
551
93.03%
EMAIL30191.58
CHAT39392.82
TOTAL
124592.61

<tbody>
</tbody>
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
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,215,222
Messages
6,123,709
Members
449,118
Latest member
MichealRed

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