SOLVED

Excel

Copper Contributor

I have a tabulation of values.

For each line in the table I am wanting to multiply two cells together and then add the result for all the lines in the table.  The total result is then to be divided by another cell in the table.

 

Rather than laboriously selecting each cell individually I am hoping to speed up the process:  the cells chosen from each line are in the same column each time.  (I have forgotten the procedure; I am sure there is one.)

 

Your assistance much appreciated.

4 Replies

@John_Dickson 

 

That is a fairly vague description, specific in some ways, but overall quite vague. So I'll give it a try, but you'd help us help you if you could (a) be more specific, and (b) post a copy of the spreadsheet that you're working with so that we could give you the actual formula.

 

That said, assuming you start in row 1 and want to multiply A1 with B1 and do the same with the corresponding cells in rows 2 through 10, start with this formula in Cell C1

=(A1*B1)

and then just copy that formula down to the other rows. The cell references will adjust.

Then in cell C11 enter this formula

=sum(C1:C10)

 

And then, assuming the divisor is in cell D11, enter this formula in cell E11

=C11/D11

and there you have it.  (Assuming that's what you meant)

@mathetes 

Thank you very much for your advice.

I have to admit to being very Excel rusty.  By trial and error I think I have stumbled across the procedure needed:  The best way to describe my previous dilemma is to show an example of the formula I have now used:

       = (SUM(E35:E43*J35:J43)/E44)

I would be most grateful if you could give me the excel keyword which defines the process I have used which is much faster and more explicit then entering each of the referenced cells individually.

 

Cheers,  John Dickson

              

best response confirmed by John_Dickson (Copper Contributor)
Solution

@John_Dickson 

 

I think you're talking about a reference to a range of cells. But you're making a bigger deal of it than I've heard before.....which may be that I'm too familiar with it so it's "no big deal" with me. 

 

And because you used the word "procedure" in your first post, I mistakenly assumed you were looking for a series of steps, simple steps, rather than a formula, a single formula. Those are all keywords too. :)

 

You'd do well, I think, to get yourself a basic text on Excel and just read it. Start to finish. That will bring things back, maybe even advance them.

 

Or browse through this website: https://exceljet.net/glossary/range

 

Thank you for your advice.
1 best response

Accepted Solutions
best response confirmed by John_Dickson (Copper Contributor)
Solution

@John_Dickson 

 

I think you're talking about a reference to a range of cells. But you're making a bigger deal of it than I've heard before.....which may be that I'm too familiar with it so it's "no big deal" with me. 

 

And because you used the word "procedure" in your first post, I mistakenly assumed you were looking for a series of steps, simple steps, rather than a formula, a single formula. Those are all keywords too. :)

 

You'd do well, I think, to get yourself a basic text on Excel and just read it. Start to finish. That will bring things back, maybe even advance them.

 

Or browse through this website: https://exceljet.net/glossary/range

 

View solution in original post