Hi all,
I am trying to create a setup with three Combo Boxes where they are cascading and dependent on the selected values from the previous Combo Box. I currently have this as logic for my second Combo Box:
Sort(
Distinct(
Filter(
edf_costcontrol_list_local_budget_owners,
CRG in ddCRG.SelectedItems.Value
),
CostObject_CMT
),
Value
)
So what I am trying to achieve for this combobox is that it gives all the available options for CostObject_CMT, based on the selection made in CRG. In the example table below, if i would have selected Apple and Peer, i want the second dropdown to provide me with the options A, B, and C. However, currently when i make multiple selections for CRG, it doesnt provide all options for CostObject_CMT. I know this because sometimes when I add a value for CRG to my selection, one of the options for CostObject_CMT dissapears, which shouldnt be possible as it should add the additional available options, so nothing should be able to dissapear. Any knows how to resolve this? Thanks
| CRG | CostObject_CMT |
| Apple | A |
| Apple | B |
| Peer | C |
| Banana | D |