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 Apps
Answered

AFTER LAST UPDATE

(0) ShareShare
ReportReport
Posted on by

AFTER MANY YEARS PERFECT JOB and now

DO NOT WORK - Filter('[dbo].[ObedListek]';Datum>Today()) - now return empty collection - Datum is Date field in SQL table  

I must change to Filter('[dbo].[ObedListek]';DateDiff(Datum;Today())<=0)) - this work fine

 

Next new problem

DO NOT WORK - OnSelect on any inserted element (text,button,..) in DataCard in FormViewer (pointer changed on hand, but not fired Launch("..")) on the same screen Button out of FormViewer work fine.

 

Categories:
I have the same question (0)
  • Verified answer
    v-yutliu-msft Profile Picture
    Microsoft Employee on at

    Hi @barta ,

    Q1:

    The reason why you met this problem is that:

    Direct date filters do not work for SQL Server.

    However, you can create a calculated column that will work. For instance, ALTER TABLE myTable ADD DateAsInt AS (YEAR([date]) * 10000 + MONTH([date]) * 100 + DAY([date])) and then filter on the calculated number column.

    For example:

    Filter(AddColumns('[dbo].[ObedListek]';
     "newdate";
     YEAR(Datum) * 10000 + MONTH(Datum) * 100 + DAY(Datum)
     );
     newdate>Value(ToDay())
     )

    Here's a doc about SQL Server connector for your reference:

    https://docs.microsoft.com/en-us/connectors/sql/

     

    Q2:

    The reason why you met this problem is that you put the button inside the formviewer.

    Since the formviewer's mode is View, the button's mode will change with it automatically.

    So I suggest you put the button outside the form.😀

     

     

    Best regards,

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 Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 401 Most Valuable Professional

#2
11manish Profile Picture

11manish 201 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 128 Super User 2026 Season 2

Last 30 days Overall leaderboard