Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building 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:
  • Verified answer
    v-yutliu-msft Profile Picture
    on at
    Re: AFTER LAST UPDATE

    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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,702 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,015 Most Valuable Professional

Leaderboard