Which of the following best describes the main benefit of using incremental refresh in Power BI?
Think about how refreshing only part of the data can save time.
Incremental refresh updates only the new or changed data partitions instead of the entire dataset, which saves time and computing resources.
Given a table 'Sales' with a Date column, which DAX filter expression correctly defines a 5-year incremental refresh policy that keeps data for the last 5 years?
FILTER('Sales', 'Sales'[Date] >= DATEADD(TODAY(), -5, YEAR))
Use DATEADD to subtract years from today for a date filter.
Option C correctly uses DATEADD to subtract 5 years from today and filters dates greater or equal to that, defining the last 5 years.
You have a large sales dataset with daily transactions over 10 years. To optimize incremental refresh, which partitioning strategy is best?
Consider a balance between refresh speed and partition management overhead.
Partitioning by month balances refresh granularity and management overhead, allowing efficient refresh of recent data without too many partitions.
You set up incremental refresh with a 1-year range but the refresh fails with an error about missing date column. Which option explains the most likely cause?
Check the data type of the date column used in the incremental refresh filter.
Incremental refresh requires the date column used in the filter to be of Date/Time type. If not, the refresh fails with a missing date column error.
Your dataset contains sales data for multiple regions with a 'Region' column and a 'Date' column. You want to apply incremental refresh only for the 'North' region, refreshing last 3 years of data. Which approach is correct?
Think about how incremental refresh policies apply to tables and filters.
Incremental refresh policies apply at the table level. To refresh only 'North' region data, create a filtered table for that region and apply the incremental refresh policy on its date column.