In this article, we will understand how to use Default and DefaultSelectedItems properties in Power Apps. We will also see their differences, examples, and common mistakes in a simple way.

What is Default property?

The Default property is used to set a starting value for a control.

Used in - Text Input, Label, Date Picker etc.

Example

Default = "Krish Kanakiya"
03-04-2026-04-54-30

Explanation

When to use Default property

What is DefaultSelectedItems property?

The DefaultSelectedItems property is used to set selected value(s) in controls that show a list of options.

Used in - ComboBox, ListBox, Dropdown etc.

Example

DefaultSelectedItems = {Value: "Krish Kanakiya"}
03-04-2026-05-03-42

Explanation

When to use DefaultSelectedItems property

Common Mistake

Don’t use Default in a ComboBox with SharePoint Choice like this:

Default = "Krish Kanakiya"

Use DefaultSelectedItems instead:

DefaultSelectedItems = {Value: "Krish Kanakiya"}

Why?

Conclusion

Using this article, you can clearly understand the difference between Default and DefaultSelectedItems in Power Apps, you can now choose the correct property based on the control and data type, and avoid common mistakes while building apps.