0
0
Figmabi_tool~10 mins

Form-like interactions in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows user data with Name, Age, and Country columns.

CellValue
A1Name
B1Age
C1Country
A2Alice
B230
C2USA
A3Bob
B325
C3Canada
A4Carol
B428
C4UK
Formula Trace
FILTER(Table1, Table1[Age] > 26)
Step 1: Table1[Age]
Step 2: Table1[Age] > 26
Step 3: FILTER(Table1, [true, false, true])
Cell Reference Map
    A       B       C
1 | Name  | Age   | Country |
2 | Alice | 30    | USA     |
3 | Bob   | 25    | Canada  |
4 | Carol | 28    | UK      |

Arrows: Age column (B2:B4) feeds into FILTER condition
The formula uses the Age column (cells B2 to B4) to filter rows.
Result
    A       B       C
2 | Alice | 30    | USA     |
4 | Carol | 28    | UK      |
The filtered table shows only users older than 26: Alice and Carol.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which rows does the FILTER formula keep?
ARows where Age is less than 26
BAll rows
CRows where Age is greater than 26
DNo rows
Key Result
FILTER(table, condition) returns rows where condition is TRUE