Javascript – Selecting correct match from list
I have an SQL Query which takes an input from a cell and queries the database to find matches. For Example SELECT Postcode FROM Table WHERE SUBSTRING(Postcode, 1, 2) = SUBSTRING('{{CollectionPostcode.text}}', 1, 2) ORDER BY Postcode ASC; If I use…