0
0
Figmabi_tool~10 mins

File and project organization in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows how files and pages are organized within BI projects in Figma. Each project has files, and each file has pages with specific content.

CellValue
A1Project Name
B1File Name
C1Page Name
D1Description
A2Sales Dashboard
B2Dashboard.fig
C2Overview
D2Main sales KPIs and charts
A3Sales Dashboard
B3Dashboard.fig
C3Details
D3Detailed sales data and filters
A4Marketing Report
B4Marketing.fig
C4Summary
D4Marketing campaign results summary
A5Marketing Report
B5Marketing.fig
C5Channels
D5Performance by marketing channel
Formula Trace
COUNTIF(B2:B5, "Dashboard.fig")
Step 1: B2:B5
Step 2: COUNTIF(["Dashboard.fig", "Dashboard.fig", "Marketing.fig", "Marketing.fig"], "Dashboard.fig")
Cell Reference Map
   A           B             C           D
1 |Project Name|File Name    |Page Name  |Description
2 |Sales Dash. |Dashboard.fig|Overview   |Main sales KPIs and charts
3 |Sales Dash. |Dashboard.fig|Details    |Detailed sales data and filters
4 |Marketing R.|Marketing.fig|Summary    |Marketing campaign results summary
5 |Marketing R.|Marketing.fig|Channels   |Performance by marketing channel
The formula references the file names in cells B2 to B5 to count how many times 'Dashboard.fig' appears.
Result
   E
1 |Count of Dashboard.fig
2 |2
The result shows that the file 'Dashboard.fig' appears 2 times in the file list.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula COUNTIF(B2:B5, "Dashboard.fig") calculate?
ANumber of files named 'Dashboard.fig'
BNumber of projects named 'Dashboard.fig'
CNumber of pages named 'Dashboard.fig'
DNumber of descriptions containing 'Dashboard.fig'
Key Result
COUNTIF(range, criteria) counts how many cells in the range match the criteria.