我已经浏览了主题 - 使用本网站中讨论的VBA从Excel表导入Sharepoint 2010列表数据。有人可以帮我提供以下网址,我在哪里可以找到它们?我已经获得了数据管理迷你项目来获取并插入excel表中放置的sharepoint中的数据但不确定我在哪里找到sharepoint链接。
我还有一个要求是将数据插入到sharepoint中的excelsheet中。请帮我解决这个问题。
提前谢谢你:)
答案 0 :(得分:0)
这样的事情可以帮助你。
Sub UpdateSpecificCells()
'If nobody has the file checked out
If Workbooks.CanCheckOut("http://excel-pc:43231/Shared Documents/ExcelList.xlsb") = True Then
Application.DisplayAlerts = False
'Open the file on the SharePoint server
Workbooks.Open Filename:="http://excel-pc:43231/Shared Documents/ExcelList.xlsb", UpdateLinks:=xlUpdateLinksNever
ActiveSheet.Cells(2, 7).Value = 100
ActiveSheet.Cells(3, 7).Value = 200
ActiveSheet.Cells(4, 7).Value = 300
'Close the workbook
Workbooks("ExcelList.xlsb").Save
Workbooks("ExcelList.xlsb").Close
End If
End Sub