Dear PowerApps Community,
Ran into following issue whilst building a canvas app:
Trying to compare a multiple selection combobox to a multiple selection sharepoint column.
For example:
- combobox input "OP1" or "OP2" or "OP3" or "OP4"
- sharepoint list input "OP1" and "OP3"
When I select "OP1" AND "OP3" in the combobox I would like the sharepoint list items with "OP1" and "OP3"
When I select "OP1" or I select "OP3" in the combobox I would like the sharepoint list items with "OP1" AND "OP3", and Items with "OP1" OR "OP3"
Code I was using to try this:
(IsBlank(cboPlanning.SelectedItems.Value) || cboPlanning.SelectedItems.Value = JOB_Assigned_To.Value );
The issue with this is that a table apparently cannot be compared to another table?
Any workarounds for this?
Kind regards,
Sébastien