Powerapps-data-table-filter Official

: Select your data source (e.g., SharePoint list, Excel table, or Dataverse).

If you want to filter a table based on a choice made in a dropdown (e.g., filtering a "Projects" list by "Status"): Items = Filter(Projects, Status.Value = Dropdown1.Selected.Value) powerapps-data-table-filter

: If the table appears blank, click Edit fields in the Properties pane to select which columns should be visible. Pro-Tip: Delegation : Select your data source (e

To show records where a specific column contains the text typed into a Text Input control: Items = Filter(DataSource, TextInput1.Text in ColumnName) You can combine multiple conditions using the &&

: Add a "Data Table" control to your screen from the Insert tab.

You can combine multiple conditions using the && (AND) or || (OR) operators: Items = Filter(DataSource, Status.Value = Dropdown1.Selected.Value && Amount > 1000) Step-by-Step Setup

: Select the Data Table, go to the Items property in the property dropdown, and enter your Filter formula.