0
0
Figmabi_tool~10 mins

Export settings and scales in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows different design assets with their export format and scale settings in Figma.

CellValue
A1Asset Name
B1Export Format
C1Scale
A2Logo
B2PNG
C21x
A3Icon
B3SVG
C32x
A4Banner
B4JPG
C40.5x
Formula Trace
IF(C2="1x", "Export at original size", IF(C2="2x", "Export at double size", IF(C2="0.5x", "Export at half size", "Unknown scale")))
Step 1: C2 = "1x"
Step 2: IF(true, "Export at original size", ...)
Cell Reference Map
    A       B       C
1 |Asset  |Format |Scale
2 |Logo   |PNG    |1x  
3 |Icon   |SVG    |2x  
4 |Banner |JPG    |0.5x 
The formula references cell C2 to determine the export scale for the 'Logo' asset.
Result
    A       B       C                   D
1 |Asset  |Format |Scale               |Export Instruction
2 |Logo   |PNG    |1x                  |Export at original size
3 |Icon   |SVG    |2x                  | 
4 |Banner |JPG    |0.5x                | 
The formula in column D for row 2 evaluates to 'Export at original size' based on the scale '1x' in C2.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula return when the scale is '1x'?
AExport at original size
BExport at double size
CExport at half size
DUnknown scale
Key Result
Nested IF statements check scale values to return corresponding export instructions.