Hi Guys,
I am currently building an app which will allow users to provide feedback to other colleagues.
I have an existing sharepoint list named "MANGOW Staff List" that is maintained separately and documents all staff in a department.
It contains the following fields
- Employee name
- Employee role
- Emplee email
- employee manager
- managers email
Within power apps I have these linked as a data source. When you select employee name from the drop down list the other four fields automatically populate using the "depends on option"
I then have various other textboxes, dropdown lists and radio buttons to provide the feedback info when these are manually filled in and a button is submitted these update the second sharepoint list named "MANGOW Feedback" with no issues.
However when I try to do it with the dropdown lists that pull data from "MANGOW Staff List" the code doesn't work and I get an error stating "Name isn't valid - This identifier isn't recognised"
I am following the same format for the other drop down lists. ( The line at the bottom "Employee Manager" isn't working )
Patch('Feedback Tracker',Defaults('Feedback Tracker'),
{
'Date of incident':DatePicker1.SelectedDate,
'Feedback Details':feedbackinfo.Text,
'Feedback Category':feedbacktypedropdown.Selected.Value,
'Product':productdropdown.Selected.Value,
'Fault Identifier':faultidentifyer.Text,
'complaint or escalation':Radio1.Selected.Value,
'Feedback Category':feedbacktypedropdown.Selected.Value,
'Employee Manager':tldropdown.Selected.value
})




