I'm trying to create a collection that contains a list of inventory models belonging to a certain item type when a user selects the item type from a dropdown. This query returns a zero-sized collection every time though, even though there are definitely items of the type I selected from the dropdown..
ClearCollect(
ModelTypesFilter,
Filter(
'Inventory Item Models',
'Inventory Item Type'.'Type Name' = drpItemType.Selected.'Type Name'
)
)