Questions
- Which type of table relationship describes a scenario where each unique value in one table occurs only once in another table?
- Many-to-many
- One-to-one
- One-to-many
- Unique relationship
- What is the DAX formula needed to build a quick measure to calculate the weighted average per category?
AVG(CATEGORY)
.AVGW(CATEGORY)
.AVERAGE([QUERY].[CATEGORY])
.- DAX isn't needed for a quick measure.
- If your data has sales by store by day, are you able to find sales by hour?
- No.
- Yes.
- Sort of, it will be averaged by store by day.
- Sort of, it will be averaged by store by hour.