Sum row by row using CSE

TheGallows32

New Member
Joined
Feb 16, 2018
Messages
11
Hi everyone! In a bit of a pickle :S

Let's say I have 10 rows of numerical data across 10 columns, and I'd like to sum the numbers across each row.
In the end I would have 10 sums (one for each row) that I could then Average.

Simple enough if you're dealing with a static worksheet, but in my workbook I'm dynamically grabbing different samples of data using drop-down list input fields and the OFFSET, INDIRECT, and VLOOKUP functions.

I know how to use CSE functions to do things like =SUM(C2:C11*E2:E11)...
I'm wondering if I can use a similar technique to sum each individual row, and then average the sums.

Thanks!
-J
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
You're welcome.

If the range does change (but you at least know what the range is), you could use the ROWS function to count the rows instead of having to hard code the 10

=SUM(A1:J10)/ROWS(A1:J10)
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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