filter multiple values in repeater when button is pressed.

I’m trying to write a condition that when a button is pressed a filter is set on the repeater that searchs for 2 different values in the same fieldset.

export function knstof_click(event, $w) {
$w(‘#dataset1’).setFilter(wixData.filter()
.eq(“DBColumnName” , “Hout” && “Stof”));

What am i doing wrong?

Hi,
It is not possible to query the way you did.
You need to use or method.

Roi.