Yes, I have gotten to the part of created the two fields but I want to
specify a range when using the left and instr functions. For example, I can
convert all the data containing the number "1" in the string by using:
Left([trees]![FB_DESC],InStr([trees]![FB_DESC],"1")-1)
However, if the number "1" isn't found I get nothing and I still need to
test for all the first numbers instr could encounter between 0-9.
Nikos Yannacopoulos said:
Tom,
Genrally speaking, I would go about it buy first creating two new fields in
the tablke, one for the text and one for the numeric part, then using an
update query to populate them, and finally deleting the original field.
The question here is how you break up your original field: how do you tell
Access whcih part is text and which part is numkeric? For example, is the
length of at leat one part constant?
HTH,
Nikos
want