0
0
Google Sheetsspreadsheet~20 mins

Paste special options in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Paste Special Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What happens when you use Paste Special > Values only?
You copy a cell with the formula =A1+B1 and then use Paste Special > Values only into another cell. What will the pasted cell contain?
AThe formula <code>=A1+B1</code> is pasted and recalculates based on the new location.
BOnly the result of the formula is pasted as a static number, no formula remains.
CThe cell is pasted with formatting but no formula or value.
DThe formula is pasted as text, showing <code>=A1+B1</code> literally.
Attempts:
2 left
💡 Hint
Paste Special > Values only copies just the displayed result, not the formula.
Function Choice
intermediate
2:00remaining
Which Paste Special option keeps the original cell formatting but pastes only the values?
You want to paste data so that only the values are pasted but the destination cell's formatting stays unchanged. Which Paste Special option should you use?
APaste Special > Format only
BPaste Special > Values and number formats
CPaste Special > Values only
DPaste Special > Values and source formatting
Attempts:
2 left
💡 Hint
Think about which option pastes only the numbers without changing formatting.
🎯 Scenario
advanced
2:00remaining
You want to multiply a range of numbers by 10 using Paste Special. What steps do you take?
You have numbers in cells A1:A5. You want to multiply all these numbers by 10 using Paste Special without writing formulas. Which sequence of actions will achieve this?
AType 10 in a cell, copy it, select A1:A5, then use Paste Special > Multiply.
BType 10 in a cell, copy it, select A1:A5, then use Paste Special > Add.
CType 10 in a cell, copy it, select A1:A5, then use Paste Special > Values only.
DType 10 in a cell, copy it, select A1:A5, then use Paste Special > Divide.
Attempts:
2 left
💡 Hint
Paste Special can perform math operations like multiply on selected cells.
📊 Formula Result
advanced
2:00remaining
What is the result of Paste Special > Transpose on a 2x3 range?
You have data in cells A1:C2 (2 rows, 3 columns). You copy this range and use Paste Special > Transpose into another location. What will be the shape of the pasted data?
A3 rows and 2 columns (rows and columns swapped)
B6 rows and 1 column (flattened into one column)
C1 row and 6 columns (flattened into one row)
D2 rows and 3 columns (same as original)
Attempts:
2 left
💡 Hint
Transpose swaps rows and columns.
data_analysis
expert
2:00remaining
After using Paste Special > Formulas only, what happens if the original referenced cells change?
You copy a cell with formula =SUM(A1:A3) and use Paste Special > Formulas only into another cell. Later, you change values in A1:A3. What happens to the pasted cell?
AThe pasted cell converts the formula to text and does not calculate.
BThe pasted cell keeps the original calculated value and does not update.
CThe pasted cell shows a #REF! error because references are broken.
DThe pasted cell updates automatically to reflect changes in A1:A3.
Attempts:
2 left
💡 Hint
Formulas keep their references and update when source data changes.