Hi
I have looked for solution to this for a long time without success. So any advice/help will be appreciated
I am writing a PowerApp that reads date and time of events from SharePoint lists and allow the use to select a specific instance based on date. Date columns on the list are Date/time format.

This works ok. I am now trying to add the details of the event, including the date and time, to the participants' (current user) calendar. I have tried various ways of doing this and have come up with the following code:
Office365Outlook.V4CalendarPostItem(
LookUp(Office365Outlook.CalendarGetTablesV2().value,name="Calendar").id,
"Subject - test",
DateTimeValue(Text(StartDateDropdown.SelectedText.Value)),
DateTimeValue(EndDateLabel),
"(UTC) Coordinated Universal Time")
However when testing I get the error 400 ""String was not recognized as a valid DateTime"
In my form, the formats are start date/time and End date/time are dropdown and text.
Thanks in advance