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

Hi @adiazLRYTC 

Just looking through your code, I see that you never create the ObjectCollection, you're just declaring a variable of type ObjectCollection. You also need to create it for the variable to not just be Nothing.

Dim ObjColl As ObjectCollection
Set ObjColl = ThisApplication.TransientObjects.CreateObjectCollection 'Create object collection

 When it's created it'll exist and you can add objects to it :slightly_smiling_face: