web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Power apps filter date...
Power Apps
Suggested Answer

Power apps filter date error with sql server (works with excel)

(0) ShareShare
ReportReport
Posted on by
 
I’m having an issue where date filtering in Power Apps to SQL Server always throws an error, even though the SQL column is DATE.
Interestingly, the same filter works fine when the data source is Excel.
Has anyone experienced this before? 
IMG-20260423-WA0005.jpg
IMG-20260423-WA0006.jpg
Categories:
I have the same question (0)
  • Suggested answer
    Vish WR Profile Picture
    1,212 on at
     

    Store the selected date in a variable and use it in the filter, or wrap it with DateAdd to avoid type issues. For large datasets, using an integer date column is the most reliable and fully delegable approach.

     

    // In the OnChange of your DatePicker or a Search Button
    Set(varFilterDate, DatePicker1.SelectedDate);
    // Then in your Gallery Items property
    Filter(
        'FFM_PAPPS_FS_USER',
        CREATED_DATE >= varFilterDate
    )
     
    or
    Filter(
        'FFM_PAPPS_FS_USER',
        CREATED_DATE >= DateAdd(DatePicker1.SelectedDate, 0, Days)
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 516

#2
WarrenBelz Profile Picture

WarrenBelz 450 Most Valuable Professional

#3
Vish WR Profile Picture

Vish WR 448

Last 30 days Overall leaderboard