Filter Details List - Based on ComboBox multiple SelectedItems #423
Unanswered
hugolini
asked this question in
Design guidance
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi All,
I need some help filtering a details list grid based on the select items from a combobox.
The combobox items source is based on table 'Orden de trabajo' and is showing a lookup from this table.
The grid items source is the same table.
I want to filter the grid based on that lookup, but only showing items select on the combobox.
If(
IsBlank(ComboBox1.SelectedItems) || CountRows(ComboBox1.SelectedItems) = 0,
'Orden de trabajo',
Filter(
'Orden de trabajo',
ForAll(ComboBox1.SelectedItems.'Ubicación técnica (msdyn_serviceaccount)'.Código,
StartsWith(
'Ubicación técnica (msdyn_serviceaccount)'.Código,
Value
)
)
)
)
All reactions