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
    3,748 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

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Valantis Profile Picture

Valantis 424

#2
WarrenBelz Profile Picture

WarrenBelz 355 Most Valuable Professional

#3
11manish Profile Picture

11manish 290

Last 30 days Overall leaderboard