- A
Manually update the records using Excel import.
Why wrong: Manual update is not automated and error-prone.
- B
Create a calculated field that computes the status.
Why wrong: Calculated fields cannot update other fields or trigger actions.
- C
Create a Power Automate flow that runs on existing records and updates the status.
Power Automate can process existing records and apply the rule logic.
- D
Modify the business rule to run on load for all records.
Why wrong: Business rules run client-side and cannot process existing records in bulk.
Quick Answer
The correct answer is to create a Power Automate flow that runs on existing records and updates the status. This is necessary because Dataverse business rules are event-driven and only trigger on new or updated records; they do not apply retroactively to existing data. To enforce a business rule retroactively on existing Dataverse records, a flow can query all records where the EndDate is in the past and the Status is not yet Expired, then perform a bulk update—providing a scalable, automated solution without manual intervention. On the PL-900 exam, this tests your understanding of the fundamental difference between client-side business rules (which are real-time but non-retroactive) and server-side automation like Power Automate (which can process existing data). A common trap is assuming business rules behave like calculated fields or that they automatically backfill. Memory tip: “Rules run on new, flows fix the old.”
PL-900 Practice Question: Describe the business value of Microsoft Power Platform
This PL-900 practice question tests your understanding of describe the business value of microsoft power platform. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. 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.
A company's Power Platform environment has a Dataverse table with a business rule that sets the 'Status' field to 'Expired' when 'EndDate' is in the past. However, the rule does not apply retroactively. How can the administrator enforce the rule for existing records?
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Create a Power Automate flow that runs on existing records and updates the status.
Option C is correct because business rules in Dataverse do not apply retroactively to existing records; they only trigger on new or updated records. A Power Automate flow can be configured to query all existing records where 'EndDate' is in the past and 'Status' is not 'Expired', then update the 'Status' field accordingly. This provides a scalable, automated solution without manual intervention.
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.
- ✗
Manually update the records using Excel import.
Why it's wrong here
Manual update is not automated and error-prone.
- ✗
Create a calculated field that computes the status.
Why it's wrong here
Calculated fields cannot update other fields or trigger actions.
- ✓
Create a Power Automate flow that runs on existing records and updates the status.
Why this is correct
Power Automate can process existing records and apply the rule logic.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Modify the business rule to run on load for all records.
Why it's wrong here
Business rules run client-side and cannot process existing records in bulk.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates assume business rules can be made retroactive by modifying their trigger conditions, but business rules in Dataverse are inherently form-based and cannot apply to existing records without an external automation tool like Power Automate.
Detailed technical explanation
How to think about this question
Under the hood, Dataverse business rules are client-side logic that run within model-driven app forms, not server-side batch operations. Power Automate flows, however, can use the Dataverse connector with a 'List rows' action to fetch all records, then apply a condition to check if 'EndDate' is in the past, and use an 'Update a row' action to set 'Status' to 'Expired'. This approach is essential for data migration or cleanup scenarios where business rules need to be enforced on historical data without manual effort.
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
An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.
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.
- →
Describe the business value of Microsoft Power Platform — study guide chapter
Learn the concepts, then practise the questions
- →
Describe the business value of Microsoft Power Platform practice questions
Targeted practice on this topic area only
- →
All PL-900 questions
976 questions across all exam domains
- →
Microsoft Power Platform Fundamentals PL-900 study guide
Full concept coverage aligned to exam objectives
- →
PL-900 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PL-900 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Identify foundational components of Power Platform practice questions
Practise PL-900 questions linked to Identify foundational components of Power Platform.
Demonstrate capabilities of Power BI practice questions
Practise PL-900 questions linked to Demonstrate capabilities of Power BI.
Describe complementary Microsoft Power Platform solutions practice questions
Practise PL-900 questions linked to Describe complementary Microsoft Power Platform solutions.
Demonstrate the capabilities of Power Automate practice questions
Practise PL-900 questions linked to Demonstrate the capabilities of Power Automate.
Describe the business value of Microsoft Power Platform practice questions
Practise PL-900 questions linked to Describe the business value of Microsoft Power Platform.
Manage the Microsoft Power Platform environment practice questions
Practise PL-900 questions linked to Manage the Microsoft Power Platform environment.
Identify foundational components of Microsoft Power Platform practice questions
Practise PL-900 questions linked to Identify foundational components of Microsoft Power Platform.
Demonstrate the capabilities of Power BI practice questions
Practise PL-900 questions linked to Demonstrate the capabilities of Power BI.
Demonstrate the capabilities of Power Apps practice questions
Practise PL-900 questions linked to Demonstrate the capabilities of Power Apps.
Demonstrate the capabilities of Microsoft Copilot Studio practice questions
Practise PL-900 questions linked to Demonstrate the capabilities of Microsoft Copilot Studio.
Demonstrate the capabilities of Power Pages practice questions
Practise PL-900 questions linked to Demonstrate the capabilities of Power Pages.
PL-900 fundamentals practice questions
Practise PL-900 questions linked to PL-900 fundamentals.
Practice this exam
Start a free PL-900 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this PL-900 question test?
Describe the business value of Microsoft Power Platform — This question tests Describe the business value of Microsoft Power Platform — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Create a Power Automate flow that runs on existing records and updates the status. — Option C is correct because business rules in Dataverse do not apply retroactively to existing records; they only trigger on new or updated records. A Power Automate flow can be configured to query all existing records where 'EndDate' is in the past and 'Status' is not 'Expired', then update the 'Status' field accordingly. This provides a scalable, automated solution without manual intervention.
What should I do if I get this PL-900 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 →
Last reviewed: Jun 24, 2026
This PL-900 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-900 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.