Hi all,
I have a collection(AvailableRoomCollection) like below,

And If I click on MeetingTimeSuggestion then there is another collection like below

So I want to get data where OrganizerAvailability = "Free", I tried using the filter function but it didn't work. I get an error "Invalid Argument Type". I am getting "Invalid argument type" on the equals sign '='
ClearCollect(testColection,
Filter(AvailableRoomCollection, MeetingTimeSuggestions.OrganizerAvailability = "Free")
);
Any help is appreciated. Thanks in advance.