Courseiva
Demonstrate the capabilities of Power AppshardMultiple ChoiceObjective-mapped

PL-900 Demonstrate the capabilities of Power Apps Practice Question

A Power App connected to Dataverse uses a column of type 'Choice' with two options: 'Active' and 'Inactive'. The app needs to display only active records by default. Which filter expression should be used in the app's OnStart property?

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

Filter(Accounts, Status = 'Active')

Uses the correct syntax: Filter(Accounts, Status = 'Active') with no quotes around the column name and single quotes around the choice value. Option D incorrectly uses double quotes around both the column name and value, which will cause an error. Options B and C also have wrong quotation usage. Therefore, only Option A is correct.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Filter(Accounts, Status = 'Active')

    Why this is correct

    Correct. Uses proper syntax: column name (no quotes) = 'Choice value'.

  • Filter(Accounts, "Status" = 'Active')

    Why it's wrong here

    Incorrect. Double quotes around the column name are invalid syntax.

  • Filter(Accounts, Status = "Active")

    Why it's wrong here

    Incorrect. Double quotes around the Choice value should be single quotes.

  • Filter(Accounts, "Status" = "Active")

    Why it's wrong here

    Incorrect: Double quotes around the column name and value are not valid syntax; use single quotes for text values and no quotes for column names.

About these practice questions

Courseiva writes every PL-900 question from scratch — 904 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

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.