Probably a stoopid question, but I can't seem to find the answer anywhere...
I have a column of data values (numbers) in column A, and a cumulative total going in column B, using
in B3, kinda thing.
My problem is that if I drag the number value from A3 out of the column e.g. to D6, then the formula in B3 'follows' the data, changing it to
, and the cumulative total remaining unchanged. What I want is for B3 to remain focused on the data in A3, no matter what is dragged into/out of A3, and for the cumulative total to increase/decrease as appropriate.
I have tried absolute references, and protecting cells, but that didn't work. Tried in Excel 2003 & 2007.
Anybody out there any ideas?
I have a column of data values (numbers) in column A, and a cumulative total going in column B, using
Code:
=if(a3<>"",a3+b2,b2)
My problem is that if I drag the number value from A3 out of the column e.g. to D6, then the formula in B3 'follows' the data, changing it to
Code:
=if(d6<>"",d6+b2,b2)
I have tried absolute references, and protecting cells, but that didn't work. Tried in Excel 2003 & 2007.
Anybody out there any ideas?