boblarson
Smeghead
- Local time
- Today, 15:41
- Joined
- Jan 12, 2001
- Messages
- 32,040
It works past the line now but get an error on the following line ( maybe becuase i forgot to say that there are sometimes empty in the plot field)
strImportText = .Fields("Plot") 'Read the imported text value
Error was
invalid use of null
Change this
Code:
strImportText = .Fields("Plot") 'Read text value
to this then:
Code:
strImportText = Nz(.Fields("Plot"),"")