Have an app where I upload a document to a SharePoint library...works fine. Need to send the date picker info to SharePoint when i hit the submit button (no problem creating the flow). Have tried the DateValue, but that gives me a date format error.
Upload.Run(Last(AttachmentControl.Attachments).Name, varBase64Only;
The below is where I am having problems. Have tried:
Text(From.SelectedDate,"[$-en-US]mm-dd-yyyy"),DateTimeFormat.ShortDate;
Text(To.SelectedDate,"[$-en-US]mm-dd-yyyy"),DateTimeFormat.ShortDate)
and
From.SelectedDate,DateTimeFormat.ShortDate, To.SelectedDate,DateTimeFormat.ShortDate)
and
From.SelectedDate, To.SelectedDate.
Thanks for any assistance provided.
chudson002