Complete the formula to sum values in cells A1 to A5.
=SUM(A1[1]A5)The colon ':' is used to specify a range of cells in Google Sheets formulas.
Complete the formula to count how many cells in B1:B10 are greater than 5.
=COUNTIF(B1[1]B10[2]">5")
The colon ':' defines the range B1 to B10. The comma ',' separates the range from the condition.
Fix the error in this formula that joins text from cells A1 and B1 with a space.
=CONCATENATE(A1[1]" "[2]B1)
In Google Sheets, CONCATENATE uses commas ',' to separate arguments.
Fill in the blank to create a formula that returns TRUE if C1 is not empty.
=NOT(IS[1](C1))ISBLANK(C1) checks if C1 is empty. NOT reverses the result to TRUE if not empty.
Fill all three blanks to create a formula that sums values in D1:D10 only if they are greater than 50.
=SUMIF(D1[1]D10[2]">50[3])
SUMIF uses a range with colon ':', then a comma ',', then the condition, and closes with a parenthesis ')'.