You are managing a PCB order with a fabricator. The fabricator states the lead time is 10 business days. If you place the order on a Wednesday, on which day will you expect the PCBs to arrive, assuming no holidays?
Count only weekdays, excluding weekends.
Lead time counts business days. Starting Wednesday, 10 business days later lands on the Wednesday two weeks later.
Which set of data fields is most essential to track PCB orders effectively in a BI dashboard?
Focus on fields that track order progress and delivery.
Order ID, Fabricator Name, Order Date, Quantity, Delivery Date, and Status provide clear tracking of PCB orders and delivery status.
Given a table 'Orders' with columns 'OrderDate' and 'ActualDeliveryDate', which DAX measure correctly calculates the average delivery delay in days?
Average Delay = AVERAGEX(Orders, DATEDIFF(Orders[OrderDate], Orders[ActualDeliveryDate], DAY))
Use AVERAGEX to iterate row by row and calculate difference.
AVERAGEX iterates over each order calculating the date difference, then averages the results. Other options either misuse functions or produce errors.
You want to show the current status distribution of PCB orders (e.g., Pending, In Production, Shipped, Delivered) on a dashboard. Which visualization type is best suited for this?
Think about showing parts of a whole clearly.
A pie chart clearly shows the proportion of orders in each status category at a glance, which is ideal for status distribution.
Review the following DAX measure intended to calculate total PCB quantity ordered:
Total Quantity = SUM(Orders[QuantityOrdered]) + SUM(Orders[QuantityShipped])
What is the main issue with this measure?
Consider what QuantityOrdered and QuantityShipped represent.
QuantityShipped is part of QuantityOrdered, so adding both sums counts shipped quantities twice.
