0
0
Figmabi_tool~10 mins

Rectangle and ellipse tools in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This data shows two shapes created with Figma's rectangle and ellipse tools, with their width and height dimensions.

CellValue
A1Shape
B1Width
C1Height
D1Area
A2Rectangle
B210
C25
A3Ellipse
B310
C35
Formula Trace
IF(A2="Rectangle", B2*C2, PI()*B3*C3/4)
Step 1: A2="Rectangle"
Step 2: B2*C2
Step 3: IF(TRUE, 50, PI()*B3*C3/4)
Cell Reference Map
    A       B       C       D
1 | Shape | Width | Height | Area
2 |Rectangle|  10  |   5   |  ?  
3 | Ellipse |  10  |   5   |     
The formula references cells A2, B2, C2 for rectangle area calculation and B3, C3 for ellipse area if needed.
Result
    A       B       C       D
1 | Shape | Width | Height | Area
2 |Rectangle|  10  |   5   |  50 
3 | Ellipse |  10  |   5   |     
The area for the rectangle is calculated as 50 and displayed in cell D2.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula check first?
AIf the width is greater than height
BIf the shape is a rectangle
CIf the shape is an ellipse
DIf the area is already calculated
Key Result
IF(shape = "Rectangle", width * height, PI() * width * height / 4) calculates area for rectangle or ellipse.