When you add a Gallery in Power Apps, it automatically highlights the first item by default. That works in many cases, but it can be unclear if you’d prefer your app to start with nothing selected.
Yes, the same thing happened to me as well. In my case, I always want to start with my gallery with no selected item when I open the app.
In this Power Apps article, I will tell you how to set no selected item in a Power Apps gallery using the best five approaches.
Set No Selected Item in a Power Apps Gallery
Here represents all five different methods for setting no selected item in the Power Apps gallery. Such as:
- Make gallery default to blank
- Reset the gallery
- Use a Power Apps variable
- Use a Variable for the Selected Record (Form Binding)
- Conditional Selection
Let’s discuss one by one.
Method – 1: Use Default = Blank()
The easiest method to set a no-selection item in the gallery is to make the gallery’s default selection blank.
Select the Power Apps gallery and set its Default property as:
Blank()

Method – 2: Reset the Gallery
Sometimes you need to clear the gallery after loading or after a specific action. For example,
- When you navigate to the screen, the gallery should be cleared.
- When moving between “Browse” and “Details” screens, the gallery should be cleared.
To achieve it, insert a Button and set its OnSelect property as : (Also, you can reset the gallery on the Screen’s OnVisible/App’s OnStart property)
Reset(gal_Tickets);

Method – 3: Use Power Apps Variable
The third approach to make the blank gallery selection is to use the Power Apps local variable. Follow the instructions below:
1. Go to the Screen’s OnVisible property and apply the code below:
UpdateContext({ varSelectedItem: Blank() })
varSelectedItem = Variable name

2. Select the gallery and set its Default property as:
varSelectedItem

3. Next, set the gallery’s OnSelect property:
UpdateContext({ varSelectedItem: ThisItem })

4. Also, you can provide a button for users to deselect manually. Add a Clear selection button and set its OnSelect property:
UpdateContext({ varSelectedItem: Blank() })

Method – 4: Use a Variable for the Selected Record (Form Binding)
Suppose you are using a Power Apps form where a user can click on any item from the gallery, and the specific record details will appear in the form.
However, you want the gallery to have no selected item whenever a user opens the app, and the form to appear with empty fields. It should only update when the user clicks on any gallery record.
To do so, follow the steps below:
1. Set the Gallery’s OnSelect property:
Set(varSelectedRecord, ThisItem)
varSelectedRecord = Variable name

2. Select the form and set its Item property:
varSelectedRecord

3. To clear the selection, add a button and set its OnSelect property:
Set(varSelectedRecord, Blank())

4. Now, save, publish, and play the app once. You can see that whenever you open the app, the form is empty by default, and no item is selected in the gallery.

5. Once you select any gallery record, the details will appear in the form as shown below. Also, you can clear or reset the form by clicking on the CLEAR button.

Method – 5: Conditional Selection
Suppose you want to make the Power Apps gallery blank selection in cases like,
- If you’re in “New Form” mode → no item is selected.
- Otherwise → the first item is selected by default.
To workaround this, set the gallery’s Default property as:
If(IsNewForm, Blank(), First(ColEmployees))
So by using all the above five approaches, we can make the Power Apps gallery selection blank. I hope this article helped you to learn how to set a non-selected item in a Power Apps gallery step by step.
Also, you can like some more Power Apps articles:
- Retrieve SharePoint List Data into Power Apps Using Power Automate
- Save Power Apps Form Attachments to SharePoint List
- Prompt in Power Apps
- Model Driven Apps in Power Apps

Hey! I’m Bijay Kumar, founder of SPGuides.com and a Microsoft Business Applications MVP (Power Automate, Power Apps). I launched this site in 2020 because I truly enjoy working with SharePoint, Power Platform, and SharePoint Framework (SPFx), and wanted to share that passion through step-by-step tutorials, guides, and training videos. My mission is to help you learn these technologies so you can utilize SharePoint, enhance productivity, and potentially build business solutions along the way.