Hi,
I'm updating a table from a spreadsheet and it all works fine except that one field is playing up.
The destination column is varchar2(500) and I'm picking up the contents of a column which holds freeform notes.
For some reason after running the procedure, the notes field(Oracle) just contains question marks to the lenght of the notes data from the spreadsheet.
I've tried single, double (2,3, and 4) around the field but it just doesn't work.
Dim strComments As String
strComments = worksheet1.Cells(intCurrentrow, 35)
Also tried .text and .value here
!notes = strComments
thanks for your help
Regards,
Graham
I'm updating a table from a spreadsheet and it all works fine except that one field is playing up.
The destination column is varchar2(500) and I'm picking up the contents of a column which holds freeform notes.
For some reason after running the procedure, the notes field(Oracle) just contains question marks to the lenght of the notes data from the spreadsheet.
I've tried single, double (2,3, and 4) around the field but it just doesn't work.
Dim strComments As String
strComments = worksheet1.Cells(intCurrentrow, 35)
Also tried .text and .value here
!notes = strComments
thanks for your help
Regards,
Graham