Remove Character from field

D

DT

I need to remove a character imbetted in the middle of a field (example:
remove the "." from 33.22620). The character is always in the same position,
in this case the third character from the left. Thanks for you help

DT
 
J

Jerry Whittle

Check out the Replace function:

Debug.Print Replace("33.22620", ".", "")

Just make sure that it's a text field and not a number.
 
D

DT

Perfect...thank you!

Jerry Whittle said:
Check out the Replace function:

Debug.Print Replace("33.22620", ".", "")

Just make sure that it's a text field and not a number.
 
Top