You have sales data for different product categories over several years. You want to compare the total sales of each category side by side for a single year. Which chart type is best suited for this?
Think about showing categories side by side for one year, not trends or percentages.
A clustered column chart places categories side by side for easy comparison in a single year. Stacked charts combine values, making side-by-side comparison harder. Line charts show trends over time, not category comparison for one year.
Given a sales table with columns SalesAmount and Year, which DAX measure correctly calculates total sales for the year 2023?
Remember that CALCULATE needs a filter expression wrapped properly.
Option C uses CALCULATE with a proper filter function to sum sales only for 2023. Option C tries to filter by column equality directly, which is invalid syntax. Option C uses SUMX with FILTER which works but is less efficient. Option C uses invalid syntax with WHERE.
You have a large sales dataset with millions of rows. You want to create a bar chart showing sales by product category. Which data modeling approach improves performance the most?
Think about star schema and reducing data duplication.
Creating a separate dimension table for product categories and relating it to the sales fact table reduces data duplication and improves query performance. Keeping all data in one large table or duplicating category data increases size and slows queries. Calculated columns add processing overhead.
You created a bar chart showing sales by region, but the axis labels show numbers instead of region names. What is the most likely cause?
Check what field is used on the axis.
If the axis field is a numeric ID instead of the descriptive region name, the chart will show numbers. Aggregation or chart type does not affect axis labels. Missing data would cause blanks, not numbers.
Which scenario best explains when a horizontal bar chart is more effective than a vertical column chart?
Think about label readability and space.
Horizontal bar charts allow long category names to be displayed clearly on the vertical axis. Column charts are better for time series or stacked percentages. Small values do not determine orientation choice.