Complete the code to set the refresh frequency to daily in Power BI service.
Refresh settings frequency = "[1]"
Setting the refresh frequency to "daily" ensures your dataset updates every day automatically.
Complete the code to specify the time zone for scheduled refresh to UTC.
Time zone setting = "[1]"
UTC is the Coordinated Universal Time, commonly used for scheduling to avoid confusion across time zones.
Fix the error in the refresh schedule expression to enable refresh only on weekdays.
Refresh days = [1]Weekdays are Monday through Friday, so the refresh should be scheduled on these days only.
Fill both blanks to configure the refresh start time and frequency correctly.
Refresh configuration = {"start_time": "[1]", "frequency": "[2]"}The refresh starts at 2 AM and runs daily to keep data updated every day.
Fill all three blanks to create a refresh policy with start time, frequency, and retry count.
Refresh policy = {"start_time": "[1]", "frequency": "[2]", "retry_count": [3]The policy sets refresh at 3:30 AM daily with 3 retry attempts if refresh fails.