Hi,
I have a Combobox (SkillPicker_1) taking values from a SP list. This works as expected and users can pick the desired skill.
Sort(
Distinct(
MatrixSkills,
SkillName
),
Ascending
)
I then perform a lookup of the result to return the category of the skill which I output to a label.
LookUp(
MatrixSkills,
SkillPicker_1.Selected.Result = SkillName,
SkillCategory
)
This works some of the time and other times will not return the category. I get no delegation warnings. My list is only 300 items long so delegation should not be an issue.
The records that are not being returned correctly are within the body of the list. i.e. there are records later in the list which are returned correctly.
Thoughts?