Hi Beetle and thanks for your quick response.
Ok, This is what I wrote:
"Update [ICD Codes] Set [UICD Codes]"=Replace("ICD Code]",".","")
ICD Codes=Table
UICD Codes would be the field I would want the result post to
ICD Code is the field that contains the decimal.
Both are text fields
But when I run it, I get the message that the Query must contain a
destination field, which I thought was UICD Codes.
Beetle said:
Use the Replace function;
Replace([YourField], ".", "")
For example, you could run an Update query;
Update [YourTable] Set [YourField] = Replace([YourField], ".", "");
*Make a backup before you do the above.*
--
_________
Sean Bailey
:
I have two different tables that have ICD codes, its just that in the
selection list the codes do not contain the decimal, but in the master list
they do. How do I remove that decimal? Thanks a bunch