Which scenario is most suitable for using a line chart in Power BI?
Think about what line charts are best at showing over time.
Line charts are ideal for showing trends and changes over time, such as monthly sales.
Given a Sales table with columns Date and Amount, which DAX measure correctly calculates cumulative sales over time for a line chart?
Cumulative Sales = CALCULATE(SUM(Sales[Amount]), FILTER(ALLSELECTED(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
Look for a measure that sums amounts up to the current date.
Option A correctly sums sales amounts for all dates up to the current date using ALLSELECTED and MAX.
Why does this DAX measure for cumulative sales produce incorrect results in a line chart?
Cumulative Sales = CALCULATE(SUM(Sales[Amount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
Cumulative Sales = CALCULATE(SUM(Sales[Amount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
Consider how ALL affects filtering in Power BI visuals.
ALL removes all filters including slicers, so the measure ignores user selections, leading to incorrect cumulative sums.
What is the effect of setting the Y-axis to 'Logarithmic scale' in a Power BI line chart?
Think about how logarithmic scales transform data visually.
Logarithmic scale compresses large values and expands small values, helping to visualize exponential trends clearly.
You need to create a line chart showing monthly sales for two product categories. One category has sales in thousands, the other in millions. How do you best design the chart to compare trends clearly?
Think about how to show different value ranges clearly in one chart.
Dual Y-axis allows comparing trends of categories with different scales in one chart without distortion.