Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to select cell A1 in Excel.
Excel
Range("[1]")
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a row number only like "1" instead of "A1".
Using a column letter only like "A" instead of "A1".
✗ Incorrect
To select a single cell, use its address like "A1" inside the Range function.
2fill in blank
mediumComplete the code to select the entire row 3 in Excel.
Excel
Rows([1]) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number as a string like "3" instead of 3.
Using a column letter instead of a row number.
✗ Incorrect
To select a whole row, use the row number as a number inside Rows(). For row 3, use 3.
3fill in blank
hardFix the error in the code to select column B in Excel.
Excel
Columns([1]) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using the column letter "B" instead of the column number.
Using the number 2 as a string.
✗ Incorrect
Columns() expects the column number as a number, so use 2 for column B.
4fill in blank
hardFill both blanks to select cells from A1 to C3 in Excel.
Excel
Range("[1]:[2]")
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using cells that do not form a proper rectangle.
Swapping the start and end cells.
✗ Incorrect
To select a range, use the start cell and end cell separated by a colon. Here, from A1 to C3.
5fill in blank
hardFill all three blanks to select cells from B2 to D4 and then select row 5 in Excel.
Excel
Set myRange = Range("[1]:[2]") myRange.Select Rows([3]).Select
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using numbers as strings in Rows().
Mixing up the order of cells in the range.
✗ Incorrect
First select the range from B2 to D4, then select row 5 using Rows(5).