Excel Add-In for SuiteCRM

Build 22.0.8462

Connecting from VBA

Before You Connect

Prior to connecting from VBA, it is necessary to add a reference to the add-in. This should be done once per module.

From the Microsoft Visual Basic for Applications window ("Visual Basic" on the Developer ribbon), navigate to Tools -> References. Check the box next to CData Excel Add-In and confirm with OK.

Establishing a Connection

To execute SQL to SuiteCRM, initialize an ExcelComModule instance. This class can be used with any CData provider. You can call the following methods to initialize the module for working with SuiteCRM:

  • SetProviderName
  • SetConnectionString

You can use the following code to start Querying Data.

Dim module As New ExcelComModule
module.SetProviderName ("SuiteCRM")
module.SetConnectionString("URL=http://mySuiteCRM.com;User=myUser;Password=myPassword;")

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462