Repeater filter "starts with"

repeater-widget

#1

Hello,

I’m trying to create a filter that narrows results by how the opens start, not contain or exact match.

For example, searching for “Min” in a list of states would pull up Minnesota, but not Wyoming.

Thanks!


#2

[[Item.Column0.indexOf(“Min”)==0]]

OR ignore case version:

[[Item.Column0.toLowerCase().indexOf(“min”)==0]]

startsWith.rp (50.5 KB)


#3

This was very helpful. Thank you so much!