Home > other >  How can I write a formula that will automatically take value from another subsheet in Google Sheet?
How can I write a formula that will automatically take value from another subsheet in Google Sheet?

Time:11-06

For ex, we have 10 list of item with price which occupy 10 rows. and then in the total section we write something like this

=SUM(A1:A11)

So, it will give a total value of all 10 item's price. Now let's say after this formula, if I make any change, let's say I changed 5th row price to some diff amount, in that case google sheet is IMMEDIATELY amd automatically making change to our total value.

The similar behviour I want is. From same Google sheet with different SUB-SHEET, if I make any change, then that value I want it to reflect in my current subsheet in a particular position. Kind off automatically copy/paste to my current sheet, when I make change in my diff subsheet.

Is that possible?

Example sheet: enter image description here

if sub sheet name does not contain space you can omit single quotes ':

=SheetA!A13

the same way you can use:

=SUM('Sheet A'!A2:A12)
  • Related