Jeff said:
Is there a way to import a text.txt file where the data is in the
format below (not a flat file)?
John Anderson
23 Red Arrow Dr
Grand Blanc, MI 49302
Bill Johnson
Calvin College
2454 Cedar Chase
Denver, CO 43223
Jack Jones
4534 Northland Dr
Boise, ID 34254
etc...
Not without code.
If it's a one time deal you can fix it in Word, then save it as a text file.
Work with a copy.
Make sure there are only two carriage returns between the end of one record
and the srat of the next.
Search and replace all the ^p^p with the pipe character "|" INCLUDE THE
QUOTES You now have
John Anderson
23 Red Arrow Dr
Grand Blanc, MI 49302"|" Bill Johnson
Calvin College
2454 Cedar Chase
Denver, CO 43223
Place a double quote at the beginning of the file. and the end.
"John Anderson
23 Red Arrow Dr
Grand Blanc, MI 49302"|" Bill Johnson
Calvin College
2454 Cedar Chase
Denver, CO 43223"
Search and replace all ^p with "," giving:
"John Anderson","23 Red Arrow Dr","Grand Blanc, MI 49302"|" Bill Johnson","
Calvin College","2454 Cedar Chase","Denver, CO 43223"
Search and replace the | with ^p giving:
"John Anderson","23 Red Arrow Dr","Grand Blanc, MI 49302"
" Bill Johnson"," Calvin College","2454 Cedar Chase","Denver, CO 43223"
Now you can import as a text file.
Breaking up the last name first name and address is better done in Access.
There is a problem with your example as some address have four lines.
If there are just a few correct them by hand in Word, if not you'll need to
add a field in Access and have more work.