Hello everyone,
I am building gallery in PowerApps in which users shall be able to update date with power picker feature. I am linking it to Sharepoint list in which i have Date column.
I am trying to check if user changed date, to verify if gallery row needs to be patched to shp.
DefaultDate for datepicker is set to ThisIstem.assignmentEndDate.
I am trying to compare ShP list, to datepicker value, but for each time I receive True response for below conditions:
1st try: ThisIstem.assignmentEndDate <> dpAEndDate.SelectedDate
2nd try: Text(ThisIstem.assignmentEndDate, "dd/mm/yyyy") <> (dpAEndDate.SelectedDate, "dd/mm/yyyy")
With bot config I receive TRUE response, even if date was not updated, and is presenting Date stored in Sharepoint.
Therefore can anyone advise me how to compare data between datepicker and shp "Date and time" list column correctly?