The general formula for filtering a table is: Filter(DataSource, Condition1, Condition2, ...)
Filter, Search, and LookUp functions - Power Platform - Microsoft Learn powerapps-data-table-filter
: Select the Data Table, go to the Items property in the property dropdown, and enter your Filter formula. The general formula for filtering a table is:
: If the table appears blank, click Edit fields in the Properties pane to select which columns should be visible. Pro-Tip: Delegation powerapps-data-table-filter
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