0
0
Figmabi_tool~10 mins

Connection creation (click, hover) in Figma - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table lists pairs of nodes representing connections in a BI dashboard. Each row shows a source node and a target node that can be connected by user interaction.

CellValue
A1Source Node
B1Target Node
A2Sales
B2Profit
A3Marketing
B3Revenue
A4Operations
B4Cost
Formula Trace
IF(HOVER(Source Node), SHOW_CONNECTION_LINE(Source Node, Target Node), IF(CLICK(Source Node), CREATE_CONNECTION(Source Node, Target Node), NO_ACTION()))
Step 1: HOVER('Sales')
Step 2: SHOW_CONNECTION_LINE('Sales', 'Profit')
Step 3: CLICK('Sales')
Step 4: NO_ACTION()
Cell Reference Map
Source
Sales
Profit
Marketing
Revenue
Operations
Cost
The formula uses the Source Node cells (A2:A4) to detect user hover or click events and then acts on the corresponding Target Node cells (B2:B4).
Result
Source
Sales
Profit
Marketing
Revenue
Operations
Cost
When the user hovers over the 'Sales' node, a visible connection line appears between Sales and Profit, indicating a potential connection before clicking.
Sheet Trace Quiz - 3 Questions
Test your understanding
What happens when the user hovers over the 'Sales' node?
ANothing happens
BA connection line appears between Sales and Profit
CA new connection is created
DThe target node changes
Key Result
IF hover on source node THEN show connection line ELSE IF click on source node THEN create connection ELSE no action