OddProject
Registered User.
- Local time
- Today, 12:18
- Joined
- Nov 24, 2009
- Messages
- 67
Hi guys,
I have a database using link tables from Excel. The Excel spreadsheet itself is linked to another workbook on a sharepoint network.
Yesturday everything worked fine when I put it together.
Now I open a query and it works fine (the first time)... But when I run the query again I get the error 'Numeric field overflow'.
I used a macro:
Sub Addspace()
Dim cell As Object
For Each cell In Selection
cell.Value = " " & cell.Value
cell.Value = Right(cell.Value, Len(cell.Value) - 1)
Next
End Sub
This may work but it erases my links to the shared workbook and leaves me with just the values.
I formatted all the data in Excel but Access changes the format which cannot be changed in a link table.
Anyone get any ideas?
Many thanks
I have a database using link tables from Excel. The Excel spreadsheet itself is linked to another workbook on a sharepoint network.
Yesturday everything worked fine when I put it together.
Now I open a query and it works fine (the first time)... But when I run the query again I get the error 'Numeric field overflow'.
I used a macro:
Sub Addspace()
Dim cell As Object
For Each cell In Selection
cell.Value = " " & cell.Value
cell.Value = Right(cell.Value, Len(cell.Value) - 1)
Next
End Sub
This may work but it erases my links to the shared workbook and leaves me with just the values.
I formatted all the data in Excel but Access changes the format which cannot be changed in a link table.
Anyone get any ideas?
Many thanks