So i already have a column name on my sharepoint list. I already tested this out without the dropdown function and just inputting text. It works out fine but then i wanted to add a new function where there is a dropdown button consisting of values. i wanted to add them and patch whatever is selected on the dropdown button to the sharepoint list.
Heres the code:
If(
!IsBlank(start_inputfield.Text) && !IsBlank(session_dropdown.Selected.Value),
Patch(
HRProject_Start,
Defaults(HRProject_Start),
{
'Session Name': session_dropdown.Selected.Value,
Email: User().Email,
Text: start_inputfield.Text,
'Date and Time Submitted': Text(Now(), "mm/dd/yyyy hh:mm")
}
)
);
It doesnt give a hint on which errors it is. Here's a picture

hoping for your help. thanks a lot