Hi,
I have a combobox that takes the values from a Dataverse table and I need that all the values come pre-selected by default.
The Item property has:
Filter(Resources, Type = "APP" And Key <>"OTHER" And Active= true)
In the DefaultSelectedItems property I have:
Lookup(Resources, Type = "APP" And Key <>"OTHER" And Active= true)
And I do not get all the values pre-selected.
The field displayed is Name in the Combobox.
Thanks for any help!
I created a collection with this values:
Filter(Resources, Type = "APP" And Key <>"OTHER" And Active= true)
and put the collection in DefaultSelectedItems and it works.
Hi @EmilioRoqueta69,
Has this issue been resolved? If so, please mark the post that was key to the solution by pressing the "Accept as Solution" button so it's easier to find for other members of the community.
Hi @EmilioRoqueta69 ,
The LookUp function will only return a single item. To select all items, use the same formula as for the Items property:
Filter(Resources, Type = "APP" And Key <>"OTHER" And Active= true)
WarrenBelz
146,605
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,946
Most Valuable Professional