Hoppa till huvudinnehållet

Workflow Query Tool code for Fuzzy Address Numbers

Kommentarer

4 kommentarer

  • John Nerge
    There's probably a way to do it, but wouldn't it be easier to use an Autocomplete Box? That way when your users start typing an address they'll see all the possible matches to what they type.
    0
  • Permanently deleted user
    We are already using autocomplete, but with large datasets it is not quick enough - users often type in a search term and hit enter long before autocomplete has offered any suggestions.
    0
  • Permanently deleted user
    PS.  In any case, I'd have to make the autocomplete query handle this situation, just the same as the actual search query.   :-)
    0
  • John Nerge

    Not sure if this gets you to what you need, but here's an idea.

     

    1. Assign the first character of the autocomplete search to a new string variable using Left(searchText,1).

     

    2. Use an If statement to test if the first character is a number using the condition yourNewStringVariable LIKE "#".

    # is a vb wildcard for a single digit 0-9.

    0

Du måste logga in om du vill lämna en kommentar.