Sample Data
This data represents parameters for creating polygon and star shapes in Figma: number of sides, inner radius percentage for stars, and shape type.
| Cell | Value |
|---|---|
| A1 | Number of Sides |
| A2 | 5 |
| B1 | Star Inner Radius (%) |
| B2 | 50 |
| C1 | Shape Type |
| C2 | Star |
This data represents parameters for creating polygon and star shapes in Figma: number of sides, inner radius percentage for stars, and shape type.
| Cell | Value |
|---|---|
| A1 | Number of Sides |
| A2 | 5 |
| B1 | Star Inner Radius (%) |
| B2 | 50 |
| C1 | Shape Type |
| C2 | Star |
IF(C2 = "Star", POLYGON_SIDES = A2 * 2, POLYGON_SIDES = A2)A B C 1 | Number | Star | Shape | of | Inner | Type | Sides | Radius | 2 | 5 | 50 | Star References: - A2 for number of sides - B2 for star inner radius - C2 for shape type
A B C D 1 | Number | Star | Shape | Polygon | of | Inner | Type | Sides | Sides | Radius | | 2 | 5 | 50 | Star | 10 D2 shows the calculated polygon sides for the star shape.