0
0
Figmabi_tool~10 mins

Keyboard shortcuts mastery in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows common Figma keyboard shortcuts for basic actions.

CellValue
A1Action
B1Shortcut
A2Copy
B2Ctrl + C
A3Paste
B3Ctrl + V
A4Undo
B4Ctrl + Z
A5Redo
B5Ctrl + Y
A6Group selection
B6Ctrl + G
A7Ungroup selection
B7Ctrl + Shift + G
A8Zoom in
B8Ctrl + +
A9Zoom out
B9Ctrl + -
Formula Trace
COUNTIF(B2:B9, "Ctrl + *")
Step 1: Range B2:B9 values = ["Ctrl + C", "Ctrl + V", "Ctrl + Z", "Ctrl + Y", "Ctrl + G", "Ctrl + Shift + G", "Ctrl + +", "Ctrl + -"]
Step 2: Check which values start with "Ctrl + "
Step 3: Count how many true values
Cell Reference Map
    A       B
1 | Action | Shortcut   |
2 | Copy   | Ctrl + C   |
3 | Paste  | Ctrl + V   |
4 | Undo   | Ctrl + Z   |
5 | Redo   | Ctrl + Y   |
6 | Group  | Ctrl + G   |
7 | Ungroup| Ctrl + Shift + G |
8 | Zoom In| Ctrl + +   |
9 | Zoom Out| Ctrl + -  |
The formula references the shortcut keys in cells B2 through B9.
Result
    A       B           C
1 | Action | Shortcut   | Result |
2 | Copy   | Ctrl + C   |        |
3 | Paste  | Ctrl + V   |        |
4 | Undo   | Ctrl + Z   |        |
5 | Redo   | Ctrl + Y   |        |
6 | Group  | Ctrl + G   |        |
7 | Ungroup| Ctrl + Shift + G |   |
8 | Zoom In| Ctrl + +   |        |
9 | Zoom Out| Ctrl + -  |   8    |
The formula counts 8 shortcuts starting with 'Ctrl + ' and shows the result in cell C9.
Sheet Trace Quiz - 3 Questions
Test your understanding
How many shortcuts in B2:B9 start with 'Ctrl + '?
A6
B8
C4
D2
Key Result
COUNTIF counts how many cells in a range match a text pattern starting with a specific string.