sedgefield02
New Member
- Joined
- May 29, 2017
- Messages
- 11
I use the yahoo financial api to download mutual fund prices each day. It has worked fine for months. Today I got
run time error 1004 application defined or object defined error
the apparent cause of the error is highlighted in bold below.
{ code
Set DataSheet = ActiveSheet
With ActiveSheet.QueryTables.Add(Connection:="URL;" & qurl, Destination:=Range("BQ5"))
.BackgroundQuery = True
' .TablesOnlyFromHTML = False
.FillAdjacentFormulas = False
.Refresh BackgroundQuery:=False '<---- cause of the bug 11/2/2017
.SaveData = True
End With
end code}
I know Yahoo will make changes without any notification. Does anyone have information on this?
run time error 1004 application defined or object defined error
the apparent cause of the error is highlighted in bold below.
{ code
Set DataSheet = ActiveSheet
With ActiveSheet.QueryTables.Add(Connection:="URL;" & qurl, Destination:=Range("BQ5"))
.BackgroundQuery = True
' .TablesOnlyFromHTML = False
.FillAdjacentFormulas = False
.Refresh BackgroundQuery:=False '<---- cause of the bug 11/2/2017
.SaveData = True
End With
end code}
I know Yahoo will make changes without any notification. Does anyone have information on this?