7

在下面的子代码中,我想将它的作用(替换超链接中的子字符串)限制为特定的列。我在 '* 中写了我的快速修复想法。但我似乎找不到一种将单元格的列值保存为 Range 变量的好方法。

Dim MyDoc As Worksheet
Dim MyCell As Range
    ...
        For Each MyCell In MyDoc.UsedRange
            If MyCell.Hyperlinks.Count > 0 Then
               '* if mycell's columnnumber = 1 then
                    LinkURL = MyCell(1).Hyperlinks(1).Address
                    FindPos = InStr(1, LinkURL, FindString)
                    If FindPos > 0 Then 'If FindString is found
                        ReplaceLen = Len(FindString)
                        URLLen = Len(LinkURL)
                        PreStr = Mid(LinkURL, 1, FindPos - 1)
                        PostStr = Mid(LinkURL, FindPos + ReplaceLen, URLLen)
                        NewURL = PreStr & ReplaceString & PostStr
                        MyCell(1).Hyperlinks(1).Address = NewURL 'Change the URL
                    End If
               '* End if
            End If
         Next MyCell
4

1 回答 1

14

您可以简单地调用该Column属性:

If MyCell.Column = 1 Then ...

这是绝对列(电子表格的 A 列),而不是范围的第一列。

如果要检查是否是范围的第一列,可以先计算一下:

firstCol = yourRange.Cells(1, 1).Column
If MyCell.Column = firstCol Then ...
于 2012-08-09T10:57:09.950 回答