I'm working on an activity tracker, users will select the Team (choice of three; AA, BB, CC) and the Type (choice of two; AdHoc or Regular) and i need to use those two values to filter a lookup list of tasks.
For example, this is the list i am trying to get data from, based on team and type fields the user selects i would like to return the third column.
Team | Type | Task |
AA | Regular | TPI Report |
AA | Regular | BU Request |
AA | Regular | Other |
BB | Regular | Trade Log |
BB | Regular | Applicability of New Rules |
BB | Regular | Other |
BB | Regular | Intranet Upload |
CC | Regular | Scope of Permission |
CC | Regular | Report submissions |
CC | Regular | Register Metrics Report |
CC | Regular | Other |
AA | AdHoc | Research |
AA | AdHoc | Other Reports |
AA | AdHoc | Query resolving |
AA | AdHoc | Other |
BB | AdHoc | Meeting set up |
BB | AdHoc | Formatting (In word or PPT) |
BB | AdHoc | Providing access |
BB | AdHoc | Other |
CC | AdHoc | Consultation |
CC | AdHoc | Other |
- The Lookup control doesn't give an option to use multiple criteria to filter.
- I tried creating a helper column concatenating the two fields in the list and a calculated value in the form doing the same - the Lookup control filter doesn't work with the calculated value
- Cascading lookups as described here won't work because any of the Teams can have either of the Types and as far as i can see that solution reqiures the second field to be exclusive to the first field.
- List Lookup filter doesn't give the option of filtering by a variable
I've hit a total block and all i can find is are other people asking similar questions (1, 2) without answers.
Any help or advice would be highly appreciated.