简体   繁体   English

Google表单:已提交回复中的自动更新工作表

[英]Google Forms: Auto-update sheet from submitted responses

Response are automatically added to the sheet "Form Responses". 响应会自动添加到“表单响应”工作表中。 I want to apply certain formulas in a sheet called "Student Answers". 我想在名为“学生答案”的表格中应用某些公式。 However, "Student Answers" doesn't auto-update from the submitted responses. 但是,“学生答案”不会根据提交的答案自动更新。 Here are the formulas I am trying to use: 以下是我尝试使用的公式:

='Form Responses'!A1 etc. ='Form Responses'!A1
=IF('Form Responses'!E6='Answers'!$E$2,1,0) "Answers" is another sheet with an answer key =IF('Form Responses'!E6='Answers'!$E$2,1,0) “ Answers”是另一个带有答案键的工作表
=SUM(D5:I5) this sums the numbers given in the previous formula. =SUM(D5:I5)将上一个公式中给出的数字相加。

Basically, I have created a quiz, and I want to grade the quiz on a separate sheet. 基本上,我已经创建了一个测验,我想在另一张纸上给测验评分。 Here is the Sheet in question . 这是有问题的工作表

The solution was to use =ARRAYFORMULA. 解决方案是使用= ARRAYFORMULA。 Here are my working examples: 这是我的工作示例:

=ArrayFormula('Student Submissions'!A:C) for basic copying of columns =ArrayFormula('Student Submissions'!A:C)用于列的基本复制

=ARRAYFORMULA(If('Student Submissions'!D3:D='Student Submissions'!D3,1,0)) for IF statements =ARRAYFORMULA(If('Student Submissions'!D3:D='Student Submissions'!D3,1,0)) IF语句的=ARRAYFORMULA(If('Student Submissions'!D3:D='Student Submissions'!D3,1,0))

=ArrayFormula(mmult(D3:I;TRANSPOSE(sign(column(D3:I))))) for SUM =ArrayFormula(mmult(D3:I;TRANSPOSE(sign(column(D3:I)))))

=ARRAYFORMULA(J3:J/6*100) for AVERAGE and percent =ARRAYFORMULA(J3:J/6*100)的平均值和百分比

Note: I found these answers in the Google Product forums but cannot find the link again. 注意:我在Google产品论坛中找到了这些答案,但无法再次找到该链接。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何每周以新条目自动更新另一个工作表中的特定单元格? (Google表格) - How to auto-update a specific cell from another sheet weekly with a new entry? (Google Sheets) 引用连接的 Google Sheet 的函数可以自动更新吗? - Can functions referring to a Connected Google Sheet auto-update? 当 Google 表格中的单元格更新时,如何自动更新或自动删除 Google 日历事件? - How to Auto-Update or Auto-Delete Google Calendar Events when Cells are Updated in the Google Sheet the Event is Created From From? 从 forms 更新 Google 表 - Update Google sheet from forms 提交后自动更新Google表单回复 - Automatically update Google form responses when they are submitted 如何将 Yahoo Finance 中的历史数据导入 Google 表格并使其自动更新? - How to Import Historical Data from Yahoo Finance into Google Sheets and make it Auto-Update? 从谷歌表格上的列表中自动填充谷歌表单中的多项选择 - Auto Populate Multiple Choice in google forms from a list on google sheet 如何每月使用导入数据自动更新Google电子表格? - How to auto-update Google Spreadsheet with import data each month? Google App脚本-自定义Importrange功能,需要自动更新 - Google App Script - Custom Importrange Function, Need Auto-Update 谷歌幻灯片自动更新链接/从谷歌表链接的表格 - Google slides auto update links /tables linked from google sheet
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM