03-13-2023
01:22 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-13-2023
01:22 PM
I don't work with iLogic, but this sounds very similar to the errors that VBA code generates when using a object that hasn't been properly assigned. I'm guessing that either "Logger" or "ExcelSH" does not actually refer to an object. In VBA this would look like:
Dim ExcelSH as Worksheet
Set ExcelSH = New Worksheet' Are you missing this line?
-Kerry