So no can seem to give me the answer I am looking for so I am trying again. Please help!!!
So the form I am creating requires a date to be submitted. Once the form is submitted with the date, the sharepoint list needs to update a status. Should I use a Patch, Update, or Collection to update the Value?
I've Tried using the following
If(!IsBlank(DatacardValue), Patch(SharePointList, Title = DatacardValue_ID.Selected.Value, {Status: "Available"})
Where DatacardValue is date,
Title is an unique ID,
and DatacardValue_ID is the input submitted by the user.