【发布时间】:2016-06-29 15:45:29
【问题描述】:
我想获取包含特定字符串的特定工作表中第一个单元格的列地址。
这是我为此编写的代码:
Dim StringInQuestion As String
Dim ColumnRange1 As Range
NamedSheet.Select
Range("A1").Select
On Error Resume Next
Set FinalCell = Cells(1, 1).SpecialCells(xlLastCell)
FinalCellAddress = Cells(FinalCell.Row, FinalCell.Column).Address
Range(ColumnRange1).Select
Selection.Copy
Set ColumnRange1 = NamedSheet.Cells
Dim ColumnRange2 As Range
ColumnRange2 = ColumnRange1.Find(StringInQuestion)
Dim ColumnComposite As Variant
ColumnComposite = ColumnRange1.Address(ColumnAbsolute:=True)
Dim Column As Variant
'Format column address procured for further use (remove any numbers)
Dim intColumn As Integer
ColumnComposite = Trim(ColumnComposite)
For intColumn = 1 To Len(ColumnComposite)
If Not IsNumeric(Mid(ColumnComposite, intColumn, 1)) Then
Column = Column & Mid(ColumnComposite, intColumn, 1)
End If
Next intColumn
'Column = Column
尽管此代码编译时没有错误,但“Column”变量仍未定义。有任何想法吗?请分享。谢谢!
更新:
感谢@ScottHoltzman 的帮助。
【问题讨论】:
-
您是否只想返回某个字符串第一次出现在工作表的单元格中的列字母(或数字)?
-
嗨@ScottHoltzman ---专栏信。感谢您的帮助。
-
您的代码不起作用吗?您是否收到错误(如果有,是什么错误以及在哪里)?
标签: excel addressing vba