Which of the following is NOT typically included in a PCB design review checklist?
Think about what is directly related to the technical quality and functionality of the PCB.
Marketing strategy is not part of the technical design review checklist. The checklist focuses on technical aspects like component placement, signal integrity, and thermal management.
You want to create a BI report that tracks the status of each item in a PCB design review checklist across multiple projects. Which data model structure is best suited for this?
Consider normalization and flexibility for reporting on checklist items independently.
Using separate tables linked by keys allows better organization, easier updates, and more flexible reporting on checklist items and projects.
Given a table 'ReviewStatus' with columns: ProjectID, ChecklistItem, Status ('Complete' or 'Incomplete'), which DAX measure correctly calculates the percentage of completed checklist items for a selected project?
Percentage Complete = DIVIDE(
CALCULATE(COUNTROWS(ReviewStatus), ReviewStatus[Status] = "Complete"),
COUNTROWS(ReviewStatus)
)Look for correct use of CALCULATE and COUNTROWS with filter conditions.
Option A uses CALCULATE with a filter on Status correctly and divides by total rows. Option A has syntax errors. Option A is missing CALCULATE and may not respect filter context. Option A uses SUMX but is less efficient.
You want to show the progress of checklist completion for multiple PCB projects in a dashboard. Which visualization type is best to clearly compare progress across projects?
Think about comparing parts of a whole across multiple categories.
A stacked bar chart allows easy comparison of completed and incomplete checklist items across multiple projects side by side.
Review the following DAX measure intended to calculate the count of incomplete checklist items per project:
Incomplete Count = COUNTROWS(FILTER(ReviewStatus, ReviewStatus[Status] = "Incomplete"))
What is the main issue with this measure when used in a report filtered by ProjectID?
Consider how FILTER and context interact in DAX measures.
The FILTER function inside COUNTROWS does not automatically respect external filters like ProjectID. Without CALCULATE, the measure ignores the report filter context on ProjectID.
