Finding an average

ram6402

New Member
Joined
May 15, 2006
Messages
20
Office Version
  1. 365
Platform
  1. Windows
ColA ColB
4 1
3 2
2 3
5 3
2 3
1 2

A20 B20
17 14

Sum ColA and Multiply by 3 (17*3) = 51
Sum ColB and Multiply by 2 (14*2) = 28

Then I need to add those 2 values (51+28) and then divide by the SUM of combined columns (79/31)

I have =(A20*3) + (B20*2) …. But how do I add the DIVIDE by the SUM of A20+B20????
 
Last edited:

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
Try:
Code:
[COLOR=#333333]=((A20*3) + (B20*2))/(A20+B20)[/COLOR]
 
Upvote 0
Thank you guys SO much!!!! =((A20*3) + (B20*2))/(A20+B20) was the winner!!!!
 
Upvote 0

Forum statistics

Threads
1,215,376
Messages
6,124,593
Members
449,174
Latest member
chandan4057

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