How to convert 2007 macro to 2003 macro?

gguardia

New Member
Joined
Feb 21, 2002
Messages
15
I have a macro in Excel 2007 that gets some data from the web (shown below). I sent it to someone using Excel 2003 but the macro does not run. What was the OLD way for the following code snippet?

Thanks!

Code:
    symbol_string = "URL;http://www.marketwatch.com/tools/quotes/options1.asp?source=&symb=" & ticker & "&time=&bars=1&bars=2&bars=3&bars=4&bars=5&bars=6&bars=7&bars=8&bars=9&bars=10&bars=11"

    With ActiveWorkbook.Connections("MarketWatchOptionData")
        .Name = "MarketWatchOptionData"
        .Description = "Get Options data from MarketWatch"
    End With
    With Selection.QueryTable
        .Connection = symbol_string
        .WebSelectionType = xlSpecifiedTables
        .WebFormatting = xlWebFormattingNone
        .WebTables = "1"
        .WebPreFormattedTextToColumns = True
        .WebConsecutiveDelimitersAsOne = True
        .WebSingleBlockTextImport = False
        .WebDisableDateRecognition = False
        .WebDisableRedirections = False
        .Refresh BackgroundQuery:=False        
        .RefreshStyle = xlOverwriteCells
        .AdjustColumnWidth = False
         
        
    End With
 
Last edited by a moderator:

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney

Forum statistics

Threads
1,215,020
Messages
6,122,709
Members
449,093
Latest member
Mnur

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