获取范围的列索引

时间:2012-08-09 10:50:55

标签: vba excel-vba excel

在下面的子代码中,我想限制它的作用(将超链接中的子字符串替换为特定列)。我写了'*我的想法是什么,以便快速解决。但我似乎无法找到将单元格的列值保存为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

1 个答案:

答案 0 :(得分:11)

您只需拨打Column媒体资源:

即可
If MyCell.Column = 1 Then ...

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

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

firstCol = yourRange.Cells(1, 1).Column
If MyCell.Column = firstCol Then ...