0
0
Figmabi_tool~10 mins

Navigate to frame in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data represents a list of frames in a Figma file with their names, IDs, and the navigation action to jump to each frame.

CellValue
A1Frame Name
A2Dashboard
A3Report
A4Summary
B1Frame ID
B2frame_001
B3frame_002
B4frame_003
C1Action
C2Navigate to frame_001
C3Navigate to frame_002
C4Navigate to frame_003
Formula Trace
NavigateToFrame("Dashboard")
Step 1: Find frame with name "Dashboard"
Step 2: Navigate to frame with ID frame_001
Cell Reference Map
  A          B           C
+----------+-----------+---------------------+
| Frame    | Frame ID  | Action              |
| Name     |           |                     |
+----------+-----------+---------------------+
| Dashboard| frame_001 | Navigate to frame_001|
| Report   | frame_002 | Navigate to frame_002|
| Summary  | frame_003 | Navigate to frame_003|
+----------+-----------+---------------------+
The formula references the 'Frame Name' column to find the frame 'Dashboard' and then uses the corresponding 'Frame ID' to perform the navigation.
Result
  A          B           C
+----------+-----------+---------------------+
| Frame    | Frame ID  | Action              |
| Name     |           |                     |
+----------+-----------+---------------------+
| Dashboard| frame_001 | >> Navigated here <<|
| Report   | frame_002 | Navigate to frame_002|
| Summary  | frame_003 | Navigate to frame_003|
+----------+-----------+---------------------+
The result shows that the navigation action has been triggered to the 'Dashboard' frame, indicated by the marker '>> Navigated here <<' in the Action column.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the function NavigateToFrame("Dashboard") do first?
AFinds the frame ID for 'Dashboard'
BNavigates directly to frame_002
CChanges the frame name to 'Dashboard'
DDeletes the frame 'Dashboard'
Key Result
NavigateToFrame(frame_name) finds the frame ID by name and triggers navigation to that frame.