I have a SPO List containing 4 columns. 3 are Choice columns and one is a Single Line of Text column as below
| Portfolio (Choice) | Program (Choice) | Role (Choice) | RoleCode (Text) |
| Corporate Services | Human Resources | Employee | CSHREMP |
| Corporate Services | Human Resources | Manager | CSHRMGR |
| Corporate Services | Information Management | Employee | CSIMEMP |
In my App I have 3 cascading dropdowns to select a Portfolio (ddPortfolio), then Program (filtered on Portfolio - ddProgram), then Role (filtered on Program - ddRole). My cascading options are working fine.
I would like a label in the app to display the corresponding RoleCode based on the dropdown choices. I am at a loss to figure out how to go about this as I cannot use the Selected.Value of the ddRole given the result resolves as something that exists multiple times in the list (i.e. "Employee"). Am being too ambitious ?
Thankyou in advance.
Anthony