Complete the formula to get the timestamp of a Google Form submission in Sheets.
=ARRAYFORMULA([1])The FormResponses!A2:A range contains the timestamps of form submissions in the linked Google Sheet.
Complete the formula to count how many times the answer "Yes" appears in the form responses column B.
=COUNTIF([1], "Yes")
The COUNTIF function counts how many cells in column B of the form responses contain "Yes".
Fix the error in the formula that tries to filter responses where column C equals "No".
=FILTER(FormResponses!A2:C, FormResponses!C2:C [1] "No")
In Google Sheets formulas, the correct equality operator is =, not ==.
Fill both blanks to create a formula that sums values in column D only if column B equals "Completed".
=SUMIF([1], [2], FormResponses!D2:D)
The SUMIF sums values in column D where column B matches the text "Completed".
Fill all three blanks to create a formula that creates a dictionary of question names and their average scores from columns B and C, only for scores above 70.
=[1]: AVERAGEIF(FormResponses!C2:C, [2], FormResponses!B2:B) for [3] in UNIQUE(FormResponses!A2:A)}
This formula builds a dictionary where each question name maps to the average score above 70.