Excel Add-In for Reckon Accounts Hosted

Build 24.0.9060

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 Reckon Accounts Hosted, 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 Reckon Accounts Hosted:

  • SetProviderName
  • SetConnectionString

You can use the following code to start Querying Data.

Dim module As New ExcelComModule
module.SetProviderName ("ReckonAccountsHosted")
module.SetConnectionString("SubscriptionKey=test;CountryVersion=2021.R2.AU;CompanyFile=Q:/CData Software.QBW;User=test;Password=test;InitiateOAuth=GETANDREFRESH;CallbackURL=http://localhost:33333;OAuthClientId=MyOAuthClientID;OAuthClientSecret=MyOAuthClientSecret;")

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9060