Weighted Rate

S

Scott M.

This should be easy... I would like to find a worksheet
function that will calc a "weighed rate" for a list of
balances and associated rates.

1000 4.50
2000 5.00
3000 6.00
4000 7.00
5000 8.00

15000 6.70

6.70 is the number that is calculated by "weighting" each
row but isn't there an Excel function that can do this
easily? Thanks!
 
K

Ken Wright

=SUM((A1:A5)*(B1:B5))/SUM(A1:A5) array entered CTRL+SHIFT+ENTER

or without having to array enter:-

=SUMPRODUCT((A1:A5)*B1:B5)/SUM(A1:A5)
 
P

Paul Corrado

Scott,

Not sure if there is a specific function, but this formula seems simple
enough.

=SUMPRODUCT((A1:A5)*(B1:B5))/SUM(A1:A5)

PC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top