0
0
Figmabi_tool~10 mins

Testing responsive designs in prototype in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data represents common screen sizes used to test responsive designs in a Figma prototype.

CellValue
A1Screen Size
B1Width (px)
C1Height (px)
A2Mobile
B2375
C2667
A3Tablet
B3768
C31024
A4Desktop
B41440
C4900
Formula Trace
IF(Screen Width <= 768, "Mobile/Tablet Layout", "Desktop Layout")
Step 1: Screen Width = 375 (Mobile)
Step 2: 375 <= 768
Step 3: IF(TRUE, "Mobile/Tablet Layout", "Desktop Layout")
Step 4: Screen Width = 1440 (Desktop)
Step 5: 1440 <= 768
Step 6: IF(FALSE, "Mobile/Tablet Layout", "Desktop Layout")
Cell Reference Map
375
768
1440
375
The formula uses the Width (px) values from cells B2, B3, and B4 to decide which layout to apply.
Result
   A           B           C           D
1 Screen Size  Width (px)  Height (px) Layout
2 Mobile      375         667         Mobile/Tablet Layout
3 Tablet      768         1024        Mobile/Tablet Layout
4 Desktop     1440        900         Desktop Layout
The final result shows which layout is chosen for each screen size based on the width condition.
Sheet Trace Quiz - 3 Questions
Test your understanding
What layout is chosen for a screen width of 375 px?
AMobile/Tablet Layout
BDesktop Layout
CTablet Layout
DNo layout
Key Result
IF(Screen Width <= Threshold, "Mobile/Tablet Layout", "Desktop Layout")