Hello all,
I'm working an app which monitoring project status and i create all the logic for logging and calculations using power apps and power automate, all are works fine. I'm using SharePoint List as data source.
Once the user has entered the start date, they should not be able to enter the date again.
If there is a date, i'm going to disable date picker.
I used this;
DateValue(Last(Filter(Saving, Title = Gallery1.Selected.Title)).Date, "tr-TR")
but when users enter a new data entered without date, it returns blank.
I edit it and try with this but didn't worked.
DateValue(Last(Filter(Saving, (Title = Gallery1.Selected.Title && Not(IsBlank(Gallery1.Selected.Date))))).Date, "tr-TR")
Is there any ideas?