New to power apps, and can't see why the date picker is not filtering the data table.
Trying to filter the Checkin Date and I think its related to the format of the dates, but can't figure out which format needs changing.
This is the current formula giving an invalid argument error:
Filter(DataTable3, Text(DateTimeValue('Checkin Date_Column2'),DateTimeFormat.LongDate) = DatePicker1.SelectedDate)
Solved! Go to Solution.
Thanks that's a start getting the formula in the right place 😀.
Still getting an invalid argument though on the DataTable.
Use the column names in your table:
Filter(DataTable3, Text('Checkin Date_Column2',LongDate) = Text(DatePicker1.SelectedDate,LongDate))
Use:
Filter(DataTable3, Text('Checkin Date',LongDate) = Text(DatePicker1.SelectedDate,LongDate))
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Hi @andyv9 ,
Try
Filter(
DataTable3,
DateDiff(
'Checkin Date_Column2',
DatePicker1.SelectedDate,
Days
)=0
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi,
Use the below formula to filter data table by date picker,
Filter(DataTable3, Text(Checkin Date_Column2,DateTimeFormat.ShortDate) = Text(DatePicker1.SelectedDate,DateTimeFormat.ShortDate))
Please click Accept as Solution, if this solution solved your issue. If this post was useful, please consider giving it Thumbs Up.
Thanks & Regards,
Devendra Singh
You have put the formula at the wrong place. It should be put on the Items property of the Datatable.
After correction on the placement of the formula, if your formula does not work, try
Filter(DataTable3, Text('Checkin Date_Column2',LongDate) = Text(DatePicker1.SelectedDate,LongDate))
On the items of the Datatable
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Thanks that's a start getting the formula in the right place 😀.
Still getting an invalid argument though on the DataTable.
Use the column names in your table:
Filter(DataTable3, Text('Checkin Date_Column2',LongDate) = Text(DatePicker1.SelectedDate,LongDate))
Use:
Filter(DataTable3, Text('Checkin Date',LongDate) = Text(DatePicker1.SelectedDate,LongDate))
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
207 | |
188 | |
80 | |
50 | |
38 |
User | Count |
---|---|
305 | |
252 | |
121 | |
73 | |
55 |