I’m trying to filter a dataset using a combination of .eq and .ge/.gt but whenever I add the .ge or .gt parameters the dataset returns no records
$w("#dataset1").setFilter(wixData.filter()
.eq("cemetery", $w("#CemeteryDD").value)
.eq("block", $w("#SectionDD").value)
.eq("row", $w("#RowDD").value)
.gt("numeric_plot", $w("#PlotSearch").value) <= works perfectly without this
The form field is configured:
He database field is defined:
Am I missing something obvious?