当用户向特定 sheet 添加新行时,它会自动将相同行添加到另一个 Google sheet

When a user add a new row to a specific sheet, it adds automatically the same to another Google sheet

我的第一个 Google sheet (sheet1) 看起来像这样:

Date    Name    Origin Exchange Destination Exchange    Amount (WITH FEES)  Currency    Reason
25/02/19 14:51  Kraken Jeremy   Kraken Corporate    0.4000  BTC we will start using corporate 
25/02/19 14:53  Kraken Jeremy   Zebpay Corporate    0.75917 BTC we will start using corporate 

我想要实现的是,当员工向 sheet 添加一行时,它会自动填充另一行 sheet。我是否必须编码或是否有一个选项可以轻松做到这一点?

把这个公式放到A1 in sheet2:

=QUERY(sheet1!A1:Z; "select * where A is not null"; 1)