Complete the formula to sum cells A1 to A5 in real-time co-editing.
=SUM([1])The correct range syntax in Google Sheets is A1:A5 to sum all cells from A1 to A5.
Complete the formula to count how many cells in B1:B10 are not empty during co-editing.
=COUNTA([1])The COUNTA function counts non-empty cells in the range B1:B10.
Fix the error in this formula to get the average of cells C1 to C5 during real-time editing.
=AVERAGE([1])The correct range syntax is C1:C5 to calculate the average of those cells.
Fill both blanks to create a formula that sums only cells in D1:D10 that are greater than 5 during co-editing.
=SUMIF([1], [2])
The SUMIF function sums cells in D1:D10 that are greater than 5 using the criteria >5.
Fill both blanks to create a formula that counts cells in E1:E20 that contain the text "Done" during real-time co-editing.
=COUNTIF([1], [2])
The COUNTIF function counts cells in E1:E20 that exactly match the text "Done".