Hi,
I have 3 sheets in an Excel file. On the second sheet, there's a 'total' row (9th row). On the first sheet, there are nearly 3500 rows of data.
On the third sheet, I want to produce each row in the 1st sheet, multiplied by the 9th row on the second sheet. I use formula to do this multiplication. For the first cell on Sheet3, i.e B2, the formula is something like this
='Sheet1'!B2*'Sheet2'!B9
Formula for C2='Sheet1'!C2*'Sheet2'!C9
.
.
.
Formula for Z2='Sheet1'!Z2*'Sheet2'!Z9
After filling the formula for B2, I just drag it sideways to auto-fill the other cells upto Z2. It works fine.
The problem starts when I drag the formula downwards. For example, when I drag it from B2 to B3, I get something like this.
='Sheet1'!B3*'Sheet2'!B10
But I want the same row on sheet2 to be multiplied with each row in Sheet1. i.e, I want
='Sheet1'!B3*'Sheet2'!B9 instead of ='Sheet1'!B3*'Sheet2'!B10.
I want the cell number to be incremented in sheet 1, but not in sheet 2.
Is there any way to do this?
Did I make my point clear?