0
0
Power BIbi_tool~20 mins

Scheduled data refresh in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Scheduled Refresh Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Scheduled Refresh Frequency

You have a Power BI dataset connected to an on-premises SQL Server database. You want the data to update automatically every 4 hours. Which setting should you configure in the Power BI service?

ASet the scheduled refresh frequency to 'Monthly' and specify the date.
BSet the scheduled refresh frequency to 'Weekly' and select the days you want refreshes.
CSet the scheduled refresh frequency to 'Hourly' and specify every 4 hours.
DSet the scheduled refresh frequency to 'Daily' and specify 4 refresh times per day.
Attempts:
2 left
💡 Hint

Think about how to schedule multiple refreshes within a day.

dax_lod_result
intermediate
2:00remaining
DAX Measure Behavior After Scheduled Refresh

You have a DAX measure that calculates total sales for the current month using the formula:
Total Sales MTD = CALCULATE(SUM(Sales[Amount]), DATESMTD(Calendar[Date]))
After a scheduled refresh at midnight, what will be the value of Total Sales MTD at 1 AM on the first day of the month?

AZero, because no sales have occurred yet in the new month.
BThe sum of sales from the first day of the month up to 1 AM (including any sales recorded at that time).
CThe total sales for the entire previous month.
DAn error because the data model is not updated yet.
Attempts:
2 left
💡 Hint

Consider what data is available immediately after midnight.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Scheduled Refresh Failure

Your Power BI dataset refresh fails with the error: 'Data source credentials are invalid'. You have recently changed the password for the SQL Server account used in the data source settings. What is the best way to fix this issue?

AChange the password back to the old one to match the stored credentials.
BRecreate the dataset from scratch with the new credentials.
CUpdate the data source credentials in the Power BI service with the new password.
DDisable scheduled refresh and refresh the dataset manually.
Attempts:
2 left
💡 Hint

Think about where Power BI stores credentials for scheduled refresh.

visualization
advanced
2:00remaining
Designing a Refresh Status Dashboard

You want to create a Power BI report page that shows the status of scheduled refreshes for multiple datasets. Which visual and data approach best communicates the refresh success or failure over the past week?

AUse a pie chart showing the percentage of datasets that refreshed successfully versus failed in the last week.
BUse a table visual listing datasets with columns for last refresh date, status (success/failure), and duration, filtered for the last 7 days.
CUse a line chart showing the number of refreshes per day without status details.
DUse a card visual showing the total number of datasets refreshed in the last week.
Attempts:
2 left
💡 Hint

Think about what details help identify issues quickly.

🎯 Scenario
expert
2:00remaining
Optimizing Scheduled Refresh for Large Datasets

Your Power BI report uses a large dataset that takes 3 hours to refresh. You want to minimize downtime and keep data as fresh as possible. Which strategy is best to achieve this?

AUse incremental refresh to update only recent data partitions and schedule refreshes during off-peak hours.
BIncrease the refresh frequency to every hour to reduce data latency.
CDisable scheduled refresh and refresh the dataset manually once a week.
DSplit the dataset into multiple smaller datasets and refresh them all simultaneously.
Attempts:
2 left
💡 Hint

Think about how to reduce refresh time and resource use.