I have read a number of posts explaining how to use Distinct + Filter and as far as I can tell, I'm implementing them correctly. Hopefully, someone can see something I'm not.
I have a SP List as a lookup table (intune_applications_naming_convention_nodes) with 3 main columns: |node_os|policy_context|application_name|
I'm trying to connect 3 combo boxes to the List, one for each column.
In the first column, I just grab Items as
Distinct(intune_application_naming_convention_nodes,node_os)
I get all the records for os returned. When I try to setup the second combo box, I get 2 empty items if I use Distinct
Distinct(Filter(intune_application_naming_convention_nodes, node_os = app_os.Selected.Result),policy_context)
but I get 3 visible items if I leave it out
Filter(intune_application_naming_convention_nodes, node_os = app_os.Selected.Result)
I'm not sure what I'm missing here.
second combo box filters items based on combo 1, but Distinct fails
not sure how to FIlter the items. for 3rd combo box based on previous two