criteria to search from Right

  • Thread starter Haggr via AccessMonster.com
  • Start date
H

Haggr via AccessMonster.com

how to search records from the Right using the last 2 digits Ex. "22" would
return record "14522"
 
J

John Vinson

how to search records from the Right using the last 2 digits Ex. "22" would
return record "14522"

Use a criterion

LIKE "*" & [Enter search term:]

If the user types 22, it will find 14522, 32131241222, 22, or any
other string ending in 22.

John W. Vinson[MVP]
 
Top