Dashboard Mode - Google Forms to Sheets
Dashboard Goal
Track and analyze responses collected from a Google Form automatically recorded in Google Sheets. See total responses, average ratings, and response details in one place.
Jump into concepts and practice - no test required
Track and analyze responses collected from a Google Form automatically recorded in Google Sheets. See total responses, average ratings, and response details in one place.
| Timestamp | Name | Rating (1-5) | Feedback |
|---|---|---|---|
| 2024-06-01 09:15:00 | Alice | 4 | Good service |
| 2024-06-01 10:30:00 | Bob | 5 | Excellent experience |
| 2024-06-01 11:45:00 | Charlie | 3 | Average, room for improvement |
| 2024-06-01 13:00:00 | Diana | 4 | Very helpful staff |
| 2024-06-01 14:15:00 | Edward | 2 | Slow response time |
=COUNTA(B2:B6)=AVERAGE(C2:C6)A1:D6.+-------------------+-------------------+ | Total Responses | Average Rating | | [5] | [3.6] | +-------------------+-------------------+ | | | Response Details Table | | (Timestamp, Name, Rating, | | Feedback) | +-----------------------------------+
Add a filter by Rating to show only responses with a certain rating or higher. When you select a rating filter (e.g., 4), the Total Responses and Average Rating update to reflect only those filtered responses. The Response Details Table also updates to show only matching rows.
If you add a filter to show only responses with Rating >= 4, which components update and what are their new values?
B2:B100 to ensure only valid rows are summed. Using B2:B is invalid syntax in Google Sheets and will cause an error.=SUM(B2) sums only one cell. =SUM(B:B2) is invalid range. =SUM(B2:B) is invalid syntax. =SUM(B2:B100) sums a fixed range, which includes rows 2 to 100.=COUNTIF(C2:C, "Yes") return?=COUNTIF(D2:D, ">50") returns 0 even though there are numbers above 50. What is the likely problem?=SUMIF('Form Responses'!B:B, A2, 'Form Responses'!D:D) sums Amount (column D) where Salesperson (column B) equals A2. =COUNTIF('Form Responses'!B:B, A2) counts entries, not sums. =SUM('Form Responses'!D:D) sums all sales ignoring salesperson. =VLOOKUP(A2, 'Form Responses'!B:D, 3, FALSE) looks up a single value, not sum.