Hi All,
I have a SP list as shown below;
List1
Title Objective ObjectiveGroup DeptID
Item1 Objective1 Objective GroupA 1
Item2 Objective1 Objective GroupB 1
Item3 Objective1 Objective GroupB 2
Item4 Objective2 Objective GroupC 2
I have added a form to capture the above information to a separate list called List2
List2
Title SelectedObjective SelectedObjectiveGroup
In the form, I added a Dropdown (drp1) in a DataCard and populated the Item field to show distinct Objective Column using the following Code:
Distinct(Filter(List1,DeptID = varRecord.ID),Objective)
(The varRecord is another table with the department information)
It shows shows Objective 1 and Objective 2.
I cant seem to get the second dropdown to display the Distinctive Objectivegroup based on drp1.
I tried
Filter(List1,ObjectiveGroup = Drp1.Selected.Result)
But no luck.
Any help please.