Google Sheets – Reflect Changes from One Sheet to Another

google sheets

I have two sheets on a Google Spreadsheet. One of which is the copy of the other. Now what I want is, when I edit one sheet, the same edit must reflect on the other. How can I do that ?

Best Answer

You can use the following formula's in sheet2 (add them in A1 of course).

Formula

  1. QUERY(Sheet1!A:D, "SELECT *")
  2. SORT(Sheet1!A:D)
  3. ARRAYFORMULA(Sheet1!A:D)

Explained

The last formula is the most straight forward, because nothing can be done in its current state. The other two allow you to do some tweaking, of which the first formula is the best equipped.

Example

I've created an example file for you: range reference