I have a formula in Excel that needs to be run on multiple rows of a column based on the numbers in that row divided by one constant. When I copy this formula and apply it to each cell in the range, all cell numbers increase with the row, including the constant. So:
B1=127 C4='=IF(B4<>"",B4/B1,"")'
If I copy cell C4 and paste it into column C, the formula becomes
=IF(B5<>"",B5/B2,"") =IF(B6<>"",B6/B3,"") etc.
when i need it
=IF(B5<>"",B5/B1,"") =IF(B6<>"",B6/B1,"") etc.
Is there an easy way to prevent an increase in expression?
excel
DrStrangepork Mar 04 '14 at 19:34 2014-03-04 19:34
source share