我創建了一個 Google Sheet,它會記錄來自 Google Forms 的條目。有很多人在這個谷歌表格之前提交了他們各自設施的資訊。
我已將所有資料粘貼到 Google 表格中,該表格記錄了 Google 表單中的條目每當通過 google 表單提交任何新條目時,它都會覆寫我手動粘貼的資料。
我希望會有解決方案。您的幫助將不勝感激。
uj5u.com熱心網友回復:
這是表格回復表嗎?問題是表單無法檢測該行是否已填充。這取決于回應的計數而不是作業表的內容。
我建議您創建一個類似于表單回復的表單,您可以在其中手動輸入,而表單回復表單將處理表單提交。
然后將兩張作業表的資料整理到另一個結合了表單資料和手動輸入的作業表中。
表單回應表:

手動輸入表:

輸出:

一步步:
- Add the header first
'Form Responses 1'!A1:C1;
- Add both data from form and manual sheet, then sort them using the timestamp (1st column)
sort({
filter('Form Responses 1'!A2:C, 'Form Responses 1'!A2:A <> "");
filter('Manual Inputs'!A2:C, 'Manual Inputs'!A2:A <> "")
}, 1, true)
- Wrap them all in a curly bracket and output as 1 formula.
Final formula:
={'Form Responses 1'!A1:C1;
sort({
filter('Form Responses 1'!A2:C, 'Form Responses 1'!A2:A <> "");
filter('Manual Inputs'!A2:C, 'Manual Inputs'!A2:A <> "")
}, 1, true)
}
Submitted another form response:

轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/360216.html
上一篇:如何將缺失的鍵添加到陣列
