In a sales dashboard, why is it important to use consistent colors for categories across all visuals?
Think about how your brain remembers colors and what they represent.
Using consistent colors helps users associate the same color with the same category, making it easier to understand the report quickly.
You want to compare monthly sales for three products side by side. Which chart layout improves clarity the most?
Think about which layout makes it easiest to compare values directly.
Grouped bar charts place product sales side by side for each month, making direct comparison simple and clear.
Given a sales table with columns: SalesAmount, ProductCategory, and Date, which DAX measure returns total sales ignoring any filter on ProductCategory but respecting other filters?
Use a function that removes filters only on ProductCategory.
ALL(Sales[ProductCategory]) removes filters on ProductCategory only, keeping other filters intact.
You have two tables: Customers and Sales. Each sale links to one customer. Which relationship type should you create in your BI model for best clarity and performance?
Think about how many sales each customer can have.
One customer can have many sales, so a one-to-many relationship from Customers to Sales is correct and efficient.
Your sales dashboard has many charts and tables, but users say it feels cluttered and hard to understand. Which design change will most improve clarity?
Think about how organizing things helps you find what you need quickly.
Grouping related visuals and consistent spacing help users scan and understand the report easily, reducing clutter.