The answer is to rename the parameter 'StartDate' to 'RangeStart' and add a 'RangeEnd' parameter. This is correct because Power BI's incremental refresh engine strictly requires two reserved, case-sensitive date/time parameters named RangeStart and RangeEnd to dynamically filter the data source query during each refresh cycle. Without these exact names, the engine cannot apply the partitioning logic needed to load only new or changed rows, causing the entire dataset to refresh instead. On the PL-300 exam, this concept tests your understanding of how incremental refresh parameters control data partitioning at the M query level, and a common trap is assuming any date parameter name will work—Power BI will not recognize 'StartDate' or 'BeginDate'. Remember the mnemonic: "RangeStart and RangeEnd are the only two friends that incremental refresh invites to the party."
PL-300 Prepare the data Practice Question
This PL-300 practice question tests your understanding of prepare the data. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
You are configuring a Power BI dataset with incremental refresh. The above JSON shows part of the M script parameters. The dataset uses a single SQL Server data source. You need to ensure that incremental refresh works correctly. What must you do?
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Rename the parameter 'StartDate' to 'RangeStart' and add a 'RangeEnd' parameter.
Incremental refresh in Power BI requires two special date/time parameters named 'RangeStart' and 'RangeEnd' (case-sensitive). The JSON snippet shows a parameter named 'StartDate', which is not recognized by the incremental refresh engine. Renaming it to 'RangeStart' and adding a 'RangeEnd' parameter allows Power BI to filter the data source query dynamically during refresh, ensuring only the changed or new rows are loaded.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Change the connection string to use a SQL account instead of integrated security.
Why it's wrong here
The authentication method does not affect incremental refresh functionality.
✓
Rename the parameter 'StartDate' to 'RangeStart' and add a 'RangeEnd' parameter.
Why this is correct
Incremental refresh uses two reserved parameters named RangeStart and RangeEnd to filter the data. The current parameter name is incorrect.
Related concept
Read the scenario before looking for a memorised answer.
✗
Enable query folding on the SQL Server source.
Why it's wrong here
Query folding is automatically supported for SQL Server; no explicit enable is needed.
✗
Define the parameters in the Power Query editor instead of the JSON file.
Why it's wrong here
Parameters can be defined in either place, but the naming convention is the issue.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume any date parameter name will work for incremental refresh, but Power BI strictly requires the exact names 'RangeStart' and 'RangeEnd' (case-sensitive) to enable the partitioning logic.
Detailed technical explanation
How to think about this question
Under the hood, Power BI's incremental refresh uses the 'RangeStart' and 'RangeEnd' parameters to generate a SQL WHERE clause that partitions the data by date ranges, enabling efficient delta loads. A subtle behavior is that these parameters must be of type 'datetime' and must be used in a filter step that supports query folding; otherwise, the entire table is reloaded, defeating the purpose of incremental refresh. In a real-world scenario, failing to name the parameters correctly causes the dataset to refresh fully each time, leading to long refresh times and high source database load.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Prepare the data — This question tests Prepare the data — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Rename the parameter 'StartDate' to 'RangeStart' and add a 'RangeEnd' parameter. — Incremental refresh in Power BI requires two special date/time parameters named 'RangeStart' and 'RangeEnd' (case-sensitive). The JSON snippet shows a parameter named 'StartDate', which is not recognized by the incremental refresh engine. Renaming it to 'RangeStart' and adding a 'RangeEnd' parameter allows Power BI to filter the data source query dynamically during refresh, ensuring only the changed or new rows are loaded.
What should I do if I get this PL-300 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Which TWO actions are required when configuring a Power BI dataset to use incremental refresh?
easy
A.Set the dataset storage mode to DirectQuery.
B.Enable query caching on the dataset.
C.Create a calculated table to store the refresh history.
✓ D.Set the incremental refresh policy in the dataset settings.
✓ E.Define rangeStart and rangeEnd parameters in Power Query.
Why D: Option D is correct because configuring an incremental refresh policy in the dataset settings is a required step to enable incremental refresh in Power BI. This policy defines how data is partitioned and refreshed incrementally based on date/time columns. Option E is correct because you must define `rangeStart` and `rangeEnd` parameters in Power Query to filter data into historical and incremental ranges, which Power BI uses to generate the refresh partitions.
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This PL-300 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PL-300 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.