Good morning,
Spent a decent amount of time looking for the correct syntax but seem unable to get it right. This is a first attempt at building an App because I couldn't get it right with forms and thought it would be a good start to learn.
Purpose of the app. We have different departments with different processes. I need to create an app accessible from the Intranet SP site where users will log issues with processes.
I have a MS List with three columns, at the moment.
Dept, Process and 'Process Owner'
Cascading drop down filtering from the Dept to the Process. This is working.
First drop down is 'Dropdown1_Dept
Second is 'Dropdown_Process'
I'd like to display the 'Process Owner" name in a text box once the Process has been selected.
Formula:
LookUp(ProcessesMasterList,Dropdown_Process.Selected.Value=Process,'Process Owner')
tired this
LookUp(ProcessesMasterList,Process=Dropdown_Process,'Process Owner')
tried this as well
Lookup(ProcessesMasterList, Column Process = dropdown_process.selected.value, column 'Process Owner')
Advice please?
PM