i Have a combobox that is suppose to filter a gallery, but i discovered, when i select multiple data, it only pulls the last data selected and not all that was selected. e.g in my combobox, i have A,B,C,D. if i select A, it shows A in my Gallery, if i select A,B, it shows B only in my Gallery instead of A and B. the below is my combobox expression and Gallery expression
cmb_InformationType(Item Properties)=Filter(Choices('Class Information'.'Information Type'),Trim(Value) in "Mathematics|Geography|Physics|Anatomy")
Informationgallery(Items Properties)= Filter(colInformation,cmb_InformationType.Selected.Value in 'Information Type'.Value || IsBlank( cmb_InformationType.Selected.Value)
my Collection formula = ClearCollect(colInformation,'Information Management');