How to filter table based on multiselect value inputs

Hi @cdiep!

You might need something like this:
const selectedValues = {{multiselect1.value}}
function SelectInputs(value) {
if (selectedValues.length === 0) {
return value.Operation !== ""
}
else {
return selectedValues.includes(value.Operation)
}
};

We also have other post from the Community page about Dynamically filtering tables you can check out in case you haven't yet.