0

I am working with a very detailed sheet that I have created in Google sheet. I have multiple parameters that I use in other sheets. My question is this, is there a way to "link" the value from one sheet to other sheets, so that if I added a row to the one sheet, it will automatically add a row to the 'linked' sheet in the exact same position with the same formatting?

Any help appreciated

  • You can reference data from another sheets into your sheet. That should serve your usecase if your range is pre defined. Another solution, I can think right of my mind is making an app script that duplicates the sheet. Solution is already available at: https://stackoverflow.com/questions/19791132/google-apps-script-copy-one-spreadsheet-to-another-spreadsheet-with-formatting. – Amit Singh Mar 03 '20 at 19:22
  • Thanks for your reply. Actually, the range of the row isn't defined so I think reference may not help me. Will check the link thank you. – Fatima Zaid Mar 04 '20 at 15:28

1 Answers1

0

Have you looked at =IMPORTRANGE()?

I think it may be exactly what you are looking for. Imagine you have a sheet like this:

Referenced sheet

You could copy this whole range using IMPORTRANGE

Target Sheet

After that all the changes on the first sheet will automatically update to the second one.

Raserhin
  • 2,516
  • 1
  • 10
  • 14