Complete the code to check if all components have footprints assigned.
IF(ISBLANK([1]), "Missing footprint", "OK")
The footprint field defines the physical package of a component. Checking if it is blank helps identify missing footprints.
Complete the code to calculate the total number of nets in the design.
COUNTROWS([1])The Nets table contains all the electrical connections. Counting its rows gives the total nets.
Fix the error in the expression to find components missing designators.
FILTER(Components, [1] = "")
The Designator field identifies components uniquely. Filtering where it is empty finds missing designators.
Fill both blanks to calculate the count of components on the top layer.
COUNTROWS(FILTER(Components, [1] = [2]))
Filtering Components where Layer equals "Top" counts components on the top PCB layer.
Fill all three blanks to create a measure that sums the total component count by value for resistors.
SUMX(FILTER(Components, [1] = [2]), [3])
This sums 1 for each component where Value equals "Resistor", effectively counting resistors.
