首页 > 解决方案 > 当用户将新行添加到特定工作表时,它会自动将相同的行添加到另一个 Google 工作表

问题描述

我的第一个 Google 工作表 (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 

我想要实现的是,当员工在该表中添加一行时,它会自动填充另一张表。我必须编码还是可以轻松地做到这一点?

标签: google-sheetsgoogle-sheets-formula

解决方案


将此公式放入sheet2中的A1

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

推荐阅读