David Higgs
Programmer
I have a Table that has a field that contains two characters which identify an area code. The area code can be 1 or 2 characters wide. If the area code is a single character a space is prefixed to the search string. This is necessary because the two characters are used to form a 4 character code in another table where the format is Character,Character,Number, Number i.e "SP83" OR " H93".
The above code finds the first instance of the Area Code that contains "H" and not " H".
Any help in resolving this issue would be much appreciated.
Regards,
David
Code:
search_area =" H"
SEEK search_area
The above code finds the first instance of the Area Code that contains "H" and not " H".
Any help in resolving this issue would be much appreciated.
Regards,
David