Bird
0
0
PCB Designbi_tool~10 mins

3D model association in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table lists PCB components and their associated 3D model files used for visualization in PCB design software.

CellValue
A1Component
B13D Model File
A2Resistor R1
B2resistor_3d.step
A3Capacitor C1
B3capacitor_3d.step
A4IC U1
B4ic_3d.step
Formula Trace
LOOKUPVALUE('3D Models'[ModelFile], '3D Models'[Component], 'PCB Components'[Component])
Step 1: LOOKUPVALUE('3D Models'[ModelFile], '3D Models'[Component], "Resistor R1")
Step 2: LOOKUPVALUE('3D Models'[ModelFile], '3D Models'[Component], "Capacitor C1")
Step 3: LOOKUPVALUE('3D Models'[ModelFile], '3D Models'[Component], "IC U1")
Cell Reference Map
   A           B
1 Component   3D Model File
2 Resistor R1 resistor_3d.step
3 Capacitor C1 capacitor_3d.step
4 IC U1       ic_3d.step

Formula references the Component column to find matching 3D Model File.
The formula uses the Component names in column A to find the matching 3D Model File in column B.
Result
   A           B
1 Component   3D Model File
2 Resistor R1 resistor_3d.step
3 Capacitor C1 capacitor_3d.step
4 IC U1       ic_3d.step

The result shows each component linked to its 3D model file for visualization.
The final output associates each PCB component with its correct 3D model file, enabling 3D visualization in the PCB design tool.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula LOOKUPVALUE return for 'Resistor R1'?
Acapacitor_3d.step
Bresistor_3d.step
Cic_3d.step
DNo value
Key Result
LOOKUPVALUE returns a value from one column by matching a key in another column.