Hi Folks -
I have a cascading ComboBox setup but it's only returning the first match value. Allow me to explain:
I have a ComboBox setup where a user will select a value (Project Alias). This ComboBox has a data-source of a Collection, easy setup here no issues.
Then, based on THAT (Project Alias) selection, I want to display only the child data element(s) that roll-up to it in the ComboBox Activity Alias. Activity Alias has a collection data source called ActivityTree that is as in the following format and contains all possible combination:

The Activity Alias ComboBox is set to display "Alias" (see above). Therefore, in my Items property of the Activity Alias ComboBox, I have the following formula:
Filter(ActivityTree, Parent_Alias = IOInvestmentAliasCB.Selected.Alias)
So my thoughts are that it will return ALL records from the "Alias" column that match the "Parent_Alias".
As you can see, it's only returning the first record:

However, when I click on the Activity Alias dropdown, it's only displaying 1 record:

Did I set something up incorrect?