
Hi, I have a Sharepoint list as follows.
| Display Name | Group |
| Apple | Fruit |
| Pear | Fruit |
| Bread | Other |
I want my combobox to only display drop down values where the group = "Fruit" (i,e only show 'Apple' & 'Pear' as drop down options)
I am assuming this will be a collection maybe?
Thanks
@inkbird01 - you would just use a Filter function on the ComboBox Items property:
Filter(
'Your Data',
Group = "Fruit"
)