Hi, I have a function to import records from excel into Access. I want to add a particular cell value in Excel under a particular field in the access table and do this until I reach the end of file. The cell value will be a date like: 09/20/2010. The field name in Access is "Date". Since the date appears in the 3rd row, 3rd column in Excel I tried something like this but didn't work:
Dim newVar As Variant
Set newVar = wks.Cells(3, 3)
![CCTVPipeTempora ry].Date = newVar
Thanks.
Dim newVar As Variant
Set newVar = wks.Cells(3, 3)
![CCTVPipeTempora ry].Date = newVar
Thanks.
Comment