OLE DB Query on Azure

BensTooCool

New Member
Joined
Nov 18, 2014
Messages
10
Hi All,

I have a excel workbook that reads a SQL script, queries a SQL DB then returns the data directly into a worksheet. The worksheet that the data returns to has a data connection type of OLE DB Query and the VBA that make this happens is as follows:

Sheets("DataSheet").Select
Range("A1").Select

With Selection.QueryTable
.Connection = _
"OLEDB;Provider=SQLOLEDB;Server=<SERVER NAME>\;App=Report_Name.xls;Database=<DATA BASE>;Trusted_Connection=yes;"
.Sql = theQueryText
.Refresh BackgroundQuery:=False
End With

The problem I have is that now our company has moved to an Azure DB and requires a Microsoft login which I have but I can't seem to work out how to adapt my workbook for azure.

Anyone know how I can do this? Is it even possible?

Thanks,

Ben
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.

Forum statistics

Threads
1,215,044
Messages
6,122,827
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top