Hi
I'm trying to patch date and time to SharePoint List. But the time value is shown as 00:00
let me know what is wrong with the below code
Patch(ExternalAccess,LookUp(ExternalAccess,ID=galID),
{FormStatus:"Access Revoked",
RevokedBy:LogInUserName,
RevokedDate:DateValue(
Text(
Today(),
"[$-en-US]dd-mm-yyyy hh:mm AM/PM"
),
"en-GB"
),
RevokerComment:RevokeComment_2.Text
});
If(IsEmpty(Errors(ExternalAccess)),Notify("Record Has Been Updated Successfully");Navigate(AccessGallery,ScreenTransition.Cover),
Notify("The Process Could Not Be Completed, Record not Added"))