0
0
Google Sheetsspreadsheet~20 mins

Reading and writing cell values in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Spreadsheet Cell Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What value will cell B2 show?
Given the following values:

A1 = 10
A2 = 20

Cell B2 contains the formula =A1 + A2.
What is the value displayed in B2?
A10 20
BA1 + A2
C30
DError
Attempts:
2 left
💡 Hint
Remember, formulas calculate values, not show the formula text.
Function Choice
intermediate
1:30remaining
Which formula correctly reads the value from cell C3?
You want to display the value from cell C3 in cell D3.
Which formula should you enter in D3?
A=C3
B=SUM(C3)
C=READ(C3)
D=GETVALUE(C3)
Attempts:
2 left
💡 Hint
To show the exact value of another cell, use a direct reference.
📊 Formula Result
advanced
2:00remaining
What is the output of this formula in cell E1?
Assume:
A1 = 5
B1 = 3

Formula in E1:
=IF(A1 > B1, A1 * 2, B1 * 2)

What value will E1 show?
A6
B10
C8
DError
Attempts:
2 left
💡 Hint
Check the condition A1 > B1 and then calculate accordingly.
🎯 Scenario
advanced
2:00remaining
You want to write a formula in cell F2 that always reads the value from cell A1, even if you copy the formula to other cells. Which formula should you use?
You want to copy the formula from F2 to G2 and H2, but always get the value from A1.
Which formula in F2 achieves this?
A=$A$1
B=A1
C=A$1
D=$A1
Attempts:
2 left
💡 Hint
Use dollar signs to fix both column and row references.
data_analysis
expert
2:30remaining
How many cells contain numeric values after applying this formula in column D?
Given the data:
A1=10, A2="Text", A3=15, A4="", A5=20

Formula in D1:D5:
=ISNUMBER(A1), =ISNUMBER(A2), etc.

How many TRUE values will appear in D1:D5?
A5
B2
C4
D3
Attempts:
2 left
💡 Hint
ISNUMBER returns TRUE only for numeric values.