Sample Data
This data shows nets on a PCB with their pin counts. We want to calculate how many test points to place per net.
| Cell | Value |
|---|---|
| A1 | Net Name |
| B1 | Pin Count |
| C1 | Test Points Needed |
| A2 | GND |
| B2 | 10 |
| C2 | |
| A3 | VCC |
| B3 | 5 |
| C3 | |
| A4 | DATA |
| B4 | 8 |
| C4 |
This data shows nets on a PCB with their pin counts. We want to calculate how many test points to place per net.
| Cell | Value |
|---|---|
| A1 | Net Name |
| B1 | Pin Count |
| C1 | Test Points Needed |
| A2 | GND |
| B2 | 10 |
| C2 | |
| A3 | VCC |
| B3 | 5 |
| C3 | |
| A4 | DATA |
| B4 | 8 |
| C4 |
=IF(B2>6, 2, 1)A B C 1 |Net Name|Pin Count|Test Points Needed| 2 | GND | 10 | | 3 | VCC | 5 | | 4 | DATA | 8 | |
A B C 1 |Net Name|Pin Count|Test Points Needed| 2 | GND | 10 | 2 | 3 | VCC | 5 | 1 | 4 | DATA | 8 | 2 |