我正在使用Excel 2010并尝试创建一个函数,该函数将替换工作表中的部分链接,具体取决于用户输入。更具体我试图替换链接以匹配用户Dropbox位置。
这是我到目前为止的代码
Private Sub CommandButton1_Click()
Dim DropboxFolder As String
Dim SearchFor As String
Dim SearchPos As Integer
SearchFor = "Dropbox"
With Application.FileDialog(msoFileDialogFolderPicker)
.AllowMultiSelect = False
.Show
On Error Resume Next
DropboxFolder = .SelectedItems(1)
For Each theHyperLink In ActiveSheet.Hyperlinks
SearchPos = InStr(0, SearchFor, theHyperLink.Address, vbBinaryCompare)
theHyperLink.Address = DropboxFolder
Next
Err.Clear
On Error GoTo 0
End With
End Sub
我已尝试调试代码,并在
添加了断点SearchPos = InStr(0, SearchFor, theHyperLink.Address, vbBinaryCompare)
SearchFor为"Dropbox"
,TheHyperLink.Address为"..\Dropbox\Salgdanmarks Salgsakademi\1\Ny Microsoft Word Document.docx"
但SearchPos设置为0
我做错了什么?
答案 0 :(得分:6)
我意识到评论是暂时的,所以我把它作为答案。这对未来的访问者也有帮助。
Instr
的语法是
InStr([start, ]string1, string2[, compare])
InStr函数语法包含以下参数:
因此,在您的情况下,您需要撤消变量。
SearchPos = InStr(1, theHyperLink.Address, SearchFor, vbTextCompare)