1
I have a somewhat common task of calculating percentage of column. For example I have a column with 20 numbers on each row. I add 21st row with formula for the sum of all those 20 rows and then I need to add another column with formula like =A1/A21
. The only problem is to copy/paste this formula 19 times. If I just create one cell with this formula, copy it, select 20 rows and paste - it will create formulas like =A2/A22
...=A20/A40
, but I need to divide only by one cell - A21. So what I have to do right now is to go through every cell and change the divisor in every single one of them. It's ok if there's 20 of rows, but what if there would be hundreds of them? Does anyone know a way to solve my problem?
2You use the $ to anchor the row and/or column you don't want to change. In this example: =A1/A$21. – fixer1234 – 2014-11-10T17:42:09.733
@fixer1234, thank you, that's exactly what I was looking for. How about posting an answer? :) – DemoniacDeath – 2014-11-10T23:17:26.513