I'm working on an app where the user completed a form to add a goal to their dashboard, then after they create a goal, they create a practice item. The issue I'm having is tying the goal to the practice item.
I have a Goals list with the following columns:
- Goal
- SPName (Users name in SharePoint) -- People/group column
- Goal Cycle starts
- Goal Cycle ends
- Status
Practice items list:
- Practice item
- Goal (look up on goals list)
- Assigned to - People/group column
- Start
- End
- Status
I'm trying to tie the goal when the user adds their practice item by providing a combo box for them to select the goal that the item aligns to.
QUESTION: How can I filter the Goal combo box to only display those goals where the SPName in the goal = the current user?
The combobox is
Choices([@PracticeItemTracker_1].Goal)
