Complete the formula to sum cells A1 to A5 in Excel.
=SUM([1])The correct way to sum a range in Excel is using a colon between the start and end cells, like A1:A5.
Complete the formula to find the average of cells B1 to B10 in Google Sheets.
=AVERAGE([1])In Google Sheets, like Excel, ranges use a colon ':' to specify the start and end cells.
Fix the error in this Excel formula to count cells in C1 to C20 that are greater than 5.
=COUNTIF(C1:C20, [1])The criteria in COUNTIF must be a text string with the comparison operator inside quotes, like ">5".
Fill both blanks to create a dictionary in Google Sheets using ARRAYFORMULA that maps words to their lengths.
=ARRAYFORMULA([1], LEN([2])})
To map words to their lengths, use the same range for both the words and LEN function. Here, A1:A5 is used for both.
Fill all three blanks to create a filtered list in Excel showing values from D1:D10 greater than 50.
=FILTER([1], [2] [3] 50)
The FILTER function takes the range and a condition. Here, we filter D1:D10 for values greater than 50 using >.