Making a Search System for column in Airtable

How to make a search system which can search a column in airtable.

It should compare the letters typed in the search bar with the column which has titles in it.

The title with most of the common letters and words should come on the top.

Is there a way to do that ?

1 Like

Lots of for-each-in-list could probably do it. Compare each title text with the search text, and assign the index a score (in a list variable maybe) so that you have an idea of which titles match the most. Then, go through the list variable to rearrange your data.

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.