Implement Cascaded Drop Downs in Product Catalog Power App

Introduction

While building Power Apps and using a gallery to display data, one of the common requirements is to have filters that will give you the flexibility to apply filters on the gallery source to show a subset of the data.

To give a better user experience, when there are multiple filters, having a cascaded filter option is an added advantage. With a cascaded drop-down, based on the selection of the first drop-down, related options are populated in the second drop-down. This eliminates unrelated data from the second drop-down which helps the user make a better-calculated filtering decision.

Scenario

In this article, we will see how to set up a cascaded drop-down filter that filters a gallery within the power app that shows the Product catalog information. We will have 2 dropdowns, Brand and Model so based on Brand selection Model dropdown will show the related models of the respective brand.

Graphical user interface

Description automatically generated

Implementation

Let’s get started with the creation of the back end which is a SharePoint List named Products which contains the below Columns and information

A picture containing funnel chart

Description automatically generated

Here we are not using any look-up columns, Brand and Model are populated as Single Line Text Boxes in the list. We will see how we can pick Distinct data from Brand and Model and create a cascading drop-down effect to filter the dataset.

Create the Power App

Let’s head over to make.powerapps.com and create a canvas app. We will create a data connection to SharePoint so as to fetch the List data.

Graphical user interface, application, Teams

Description automatically generated

We will then specify the Products list and connect to it.

Graphical user interface, application

Description automatically generated with medium confidence

Now let’s add the Brand and Model Dropdowns which will be populated with the SharePoint List column values using Filtered Expression which we will see in a while. We will also add a Gallery and assign the list as its Data Source.

Graphical user interface, application

Description automatically generated

To make the app look a bit more beautiful, we will add an image to the left side and apply a bit of formatting on the Gallery and add the remaining fields from the List to the gallery.

Graphical user interface

Description automatically generated

Cascaded Drop Down

To implement cascaded dropdown using 2 columns from the same List, we will apply the filtered expressions on Brand and Model Drop Down. In the Brand drop downs Item property, we will add the below expression that gets the distinct values from the brand Columns in the Products Source.

Distinct(Products,Brand)
Graphical user interface, application

Description automatically generated

Followed by that we will add the below expression on the Model Drop down’s Item Property so that it will filter the Products Source list and pick rows where Brand SharePoint List Column Value is equal to the value selected in the Brand Drop Down. We will also wrap with a Distinct function and pick the unique Model Values from the filtered rows to populate the drop-down

Distinct(Filter(Products,Brand=Dropdown_Brand.Selected.Result),Model)
Graphical user interface, application

Description automatically generated

Filter the Gallery

Thus, we have applied a cascaded filter in the drop-downs, now using the selected values lets filter the gallery as well using the below expression

Filter(Products,Brand=Dropdown_Brand.Selected.Result,Model=Dropdown_Model.Selected.Result)

We have used the filter function to filter the Products source and pick the records where the Brand and Model SharePoint List column contains the respective values selected in the Cascaded dropdown

Graphical user interface

Description automatically generated

Test the Cascading Functionality

Now let’s test the working of cascading by previewing the app and we can see that the second drop-down values will be listed in relation to the first drop-down selection and in real-time both the filters will be applied to the gallery which shows the filters subset of data.

Summary

Thus, we saw how to set up a Cascaded drop-down based on 2 columns present in the same SharePoint list and use it to filter the gallery in the Power App.

Related Articles

Author

Author

Priyaranjan KS is a Modern Workplace Architect primarily focused on developing and architecting solutions around Office 365,Power Platform and Azure.He is also a Microsoft Most Valuable Professional(MVP) and a Microsoft Certified Trainer(MCT)

Latest Articles