What is the main purpose of performing an Electrical Rules Check (ERC) in PCB design?
Think about what errors ERC is designed to catch related to electrical connectivity.
ERC is used to verify that the schematic's electrical connections are correct and to find issues like unconnected pins or conflicting connections.
Given a PCB design tool that outputs ERC errors as a table with columns: ErrorType and Count, which DAX expression correctly calculates the total number of ERC errors?
ERC_Errors = SUM(ERC_Table[Count])
Think about how to sum all error counts, not just count rows or distinct types.
Summing the Count column gives the total number of errors across all types.
You want to create a dashboard showing the distribution of different ERC error types and their counts. Which visualization type best communicates this information clearly?
Consider which chart type clearly compares counts across categories.
A stacked bar chart clearly shows counts per error type and allows easy comparison between them.
In a report, a filter is applied to show only 'Short Circuit' ERC errors, but the report still shows other error types. Which DAX filter expression correctly filters only 'Short Circuit' errors?
FILTER(ERC_Table, ERC_Table[ErrorType] = "Short Circuit")Check the correct syntax for string comparison in DAX.
DAX uses a single equals sign for comparison and strings must be in quotes.
You have a list of ERC errors with columns: ErrorType, Severity (High, Medium, Low), and Count. You want to create a calculated measure that sums counts only for High severity errors to prioritize fixing. Which DAX expression achieves this?
Think about how to filter rows before summing in DAX.
SUMX with FILTER correctly sums counts only for rows where Severity is High.
