D
Dan Ricker
The first thing I notice (could be just a copy paste error
for the post here).
The line:
objXL.Cells(Row,3).Value = oRS("mobile") 'THIS
LINE FAILS!
Should be: (the ".Value" missing)
objXL.Cells(Row,3).Value = oRS
("mobile").Value 'THIS LINE FAILS!
--------------------------
Other than that, you mention "special field" what
does "special" mean?
Is it possible that the value is null? If so, you can add
a function takes the field as an argument and tests the
value of the field. The function returns a value that the
sheet cell can use.
Note: I'm not sure if a database null can or cannot be
used in a cell...
for the post here).
The line:
objXL.Cells(Row,3).Value = oRS("mobile") 'THIS
LINE FAILS!
Should be: (the ".Value" missing)
objXL.Cells(Row,3).Value = oRS
("mobile").Value 'THIS LINE FAILS!
--------------------------
Other than that, you mention "special field" what
does "special" mean?
Is it possible that the value is null? If so, you can add
a function takes the field as an argument and tests the
value of the field. The function returns a value that the
sheet cell can use.
Note: I'm not sure if a database null can or cannot be
used in a cell...