|
-
Oct 21st, 2003, 10:06 AM
#1
Thread Starter
Junior Member
How to convert the data type between Word table and Access table?
Hello
I am sure that some body must know how to do it. I am going to transfer data in Word table into Access table, however the data type in one of the Access field is Number, I have to convert the data in Word into number so that the type does not mismatch. The part of code as:
Set rs = dbs.OpenRecordset("Action", dbOpenDynaset)
With rs
.Addnew
!ActionID = TrsTable.Cell(i, 1)
The ActionID is the field name in Database table Action, the type is Number
I tried !ActionID=CInt(TrsTable.Cell(i, 1)), it does not work.
Any help please?
Thank you
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|