I have an Access Module that imports a text file and then changes the data types of several columns. I want to change one of the columns to single fixed with 1 decimal place.
I have the following code in my module:
DoCmd.RunSQL ("alter table tbl_loadouts_worktable alter [Rt Code] single")
I'm just not sure how to set it to fixed with the one decimal place.
Thanks in advance for any and all help.
I have the following code in my module:
DoCmd.RunSQL ("alter table tbl_loadouts_worktable alter [Rt Code] single")
I'm just not sure how to set it to fixed with the one decimal place.
Thanks in advance for any and all help.