Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
etckerry
in reply to: miechh

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