Google-sheets – What would I use to write a formula only once and have it work on multiple sheets

google sheets

I want to write a formula once in one sheet and have others call that formula and do calculation in their own sheet. I want to do this because calculations need to be done in 100 other sheets within the same document but I don't want to have to change the formula in every one of those sheets if we decide to modify it.

Best Answer

I am not sure I understand you requirement but perhaps a named range would help you. Take for example:

WA7923 example

Now name A3 - the default would be NamedRange1. This can be used elsewhere in the same sheet or in other sheets in the same document with:

=NamedRange1

to return 6 wherever entered.

Now say change + to ^ in A3 above. Then all those 6 entries will change to 16.