0
0
Figmabi_tool~10 mins

Transition animations in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows screens in a Figma prototype with their assigned transition animation types and durations in milliseconds.

CellValue
A1Screen
B1Animation Type
C1Duration (ms)
A2Home
B2Slide In
C2300
A3Details
B3Fade
C3500
A4Settings
B4Push
C4400
Formula Trace
IF(B2="Slide In", C2, IF(B2="Fade", C2, IF(B2="Push", C2, 0)))
Step 1: B2 = "Slide In"
Step 2: IF(TRUE, C2, ...)
Cell Reference Map
    A       B           C
1 |Screen |Animation  |Duration
2 |Home   |Slide In  |300
3 |Details|Fade      |500
4 |Settings|Push     |400

Formula references B2 and C2 for Home screen animation and duration.
The formula uses the animation type in B2 and duration in C2 to decide the transition duration for the Home screen.
Result
    A       B           C           D
1 |Screen |Animation  |Duration   |Result
2 |Home   |Slide In  |300        |300
3 |Details|Fade      |500        |
4 |Settings|Push     |400        |
The formula result for the Home screen transition duration is 300 milliseconds, shown in column D.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula return if the animation type in B2 is 'Slide In'?
AZero
BThe text 'Slide In'
CThe duration in C2
DThe animation type in B2
Key Result
Nested IF checks animation type and returns corresponding duration or 0 if no match.