Help needed: VBA for Mac 2011

kyuuten

New Member
Joined
Apr 10, 2013
Messages
1
Hi guys,

I have a VBA compiled which works fine on PC, but don't know if it works for Mac.
Can anyone help me?

As you can see, the website is a password protected one, so I'd just need the syntax checked.

PS: Crosspost here: http://www.excelforum.com/excel-pro...help-needed-vba-for-mac-2011-a.html?p=3202608

Thanks,
Iulian

With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://www.gurufocus.com/financials.php?symbol=" & AddSheetQuestion, Destination:=Range _
("$m$2"))
.Name = "financials.php?symbol=" & AddSheetQuestion
.FieldNames = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = True
.SaveData = True
.WebSelectionType = xlSpecifiedTables
.WebTables = """R1"",""Rf"""
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With​
 
Last edited:

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,215,320
Messages
6,124,238
Members
449,149
Latest member
mwdbActuary

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