好友
阅读权限10
听众
最后登录1970-1-1
|
轩尼狮
发表于 2020-6-28 09:27
请教楼主个问题,我从网上找到一个excel表格统计股票交易的,但是里面牵扯到价格自动更新的出了问题
http://qt.gtimg.cn/q=sz接口的网站,可以在网页看到正常更新数据,但是在n = rst.RecordCount这个地方提示编译错误,提示类型不匹配
跪谢啊,对这类excel函数完全不懂
Sub 持仓更新()
On Error Resume Next
Application.ScreenUpdating = False
Application.EnableEvents = False
Dim i, j, m, n As Integer
Dim ny, nn, yy
Dim r, r1, l, l1 As Long
Dim xrg As Range, xaddress
Dim URL, Temp, arr, dm, df
r = Sheets("交易流水").Range("a" & Rows.Count).End(xlUp).Row
l = Sheets("交易流水").Cells(1, Columns.Count).End(xlToLeft).Column
r1 = Range("b" & Rows.Count).End(xlUp).Row
l1 = Cells(2, Columns.Count).End(xlToLeft).Column
If r1 > 10 Then Range(Cells(11, 2), Cells(r1, 5)).ClearContents
Set xrg = Sheets("交易流水").Range("a1").Resize(r, l)
xaddress = xrg.Address(0, 0)
Set conn = New ADODB.Connection
Set rst = New ADODB.Recordset
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Excel 8.0;Data Source=" & ThisWorkbook.FullName
strsql = "select distinct 账户,代码,名称 from [交易流水$" & xaddress & "] where 代码 is not null order by 账户,代码"
rst.Open strsql, conn, adOpenKeyset, adLockOptimistic
n = rst.RecordCount
m = rst.Fields.Count
If n = 0 Then GoTo 1
ReDim arr(1 To n, 1 To m + 2)
For i = 1 To n
For j = 1 To m
arr(i, j) = rst.Fields(j - 1)
Next j
rst.MoveNext
Next i
Temp = CreateObject("Wscript.shell").Run("ping qt.gtimg.cn -n 1", 0, True)
If Temp <> 0 Then
MsgBox "没有更新最新价,请检查网络是否通畅!", , qymc & "-系统提示"
Range("b11").CopyFromRecordset rst
Else
For i = 1 To n
dm = arr(i, 2)
If Left(Val(dm), 2) = 60 Then
URL = "http://qt.gtimg.cn/q=sh" & dm
Else
URL = "http://qt.gtimg.cn/q=sz" & dm
End If
With CreateObject("msxml2.xmlhttp")
.Open "GET", URL, False
.send
df = Split(.responsetext, "~")
End With
If df(3) = 0 Then
arr(i, 4) = df(4)
arr(i, 5) = df(4)
Else
arr(i, 4) = df(3)
arr(i, 5) = df(4)
End If
Next i
Range("b11").Resize(n, 5) = arr
' Range("c11:c" & 11 + n).NumberFormatLocal = "'" & "@"
End If
With ActiveSheet.PageSetup
.TopMargin = 6
.LeftMargin = 3
.RightMargin = 3
.HeaderMargin = 3
.FooterMargin = 3
.Orientation = 2 'xlLandscape
.CenterHorizontally = True
.CenterVertically = False
.PrintArea = Range(Cells(1, 2), Cells(n + 10, l1)).Address
.Zoom = Sheets("基础资料").Range("a7").Value
End With
1:
conn.Close
Set rst = Nothing
Set conn = Nothing
0:
Application.EnableEvents = True
Application.ScreenUpdating = True
Exit Sub
End Sub |
|