Hi@RCSmart01,
Based om the issue that you mentioned, do you want to filter the Genre based on the multi select LookUp column?
Could you please tell me more about your scenario?
I have a test on my side, please take a try as below.
Set the Items property of the Genre Dropdown as below:
Filter(
Genre,
CountRows(
Filter(
ForAll(
Type.Value,
If(
Value in ComboBox1.SelectedItems.Value,
{t: 1},
{t: 0}
)
),
t = 1
)
) = CountRows(ComboBox1.SelectedItems.Value)
).Genre
Note: Combo Box1 represents the LookUp column Type.
Hope it could help.
Regards,
Qi