Filter data between two dates in PowerApps
To filter data between two dates in PowerApps, you can use the Filter function. The Filter function allows you to return a subset of data based on specific criteria.
Here is an example of how to use the Filter function to return data between two dates:
- First, create two date picker controls in your PowerApp to select the start and end dates for the filter.
- In your data source, create a formula that uses the Filter function to return data based on the selected dates:
Filter(
YourDataSource,
YourDateColumn >= StartDatePicker.SelectedDate &&
YourDateColumn <= EndDatePicker.SelectedDate
)
Comments
Post a Comment