I need a formula to return a 7 diget number from with a text field, the data comes in the format below.
"License Search.Could be any value in here or blank.6680997.PUNTO 60 ELX 5 DR.Could be any value in here or blank."
This is quite easy to do in excel because the value is the only 7 digit number between two "." as below.
=MID(A1,(SEARCH(".???????.",A1,1)+1),7)
But access doesn't have the SEARCH formula.
instr() wont allow wild cards, how can i find out where the number i need starts???
Please help
"License Search.Could be any value in here or blank.6680997.PUNTO 60 ELX 5 DR.Could be any value in here or blank."
This is quite easy to do in excel because the value is the only 7 digit number between two "." as below.
=MID(A1,(SEARCH(".???????.",A1,1)+1),7)
But access doesn't have the SEARCH formula.
instr() wont allow wild cards, how can i find out where the number i need starts???
Please help