我需要将以下代码更改为:
:
'in a loop with a being rownumber
CurrInvoiceNum = ws2.Range("B" & a).Value
要求:
' Transaction ID is the column name of B and the reason for the change is that it need not always be in B.
CurrInvoiceNum = ws2.Range("Transaction ID" & a).Value
我试着得到这样的细胞:
Cells.Find(What:="Transaction ID", LookAt:=xlWhole).Column )
但是不能使用行号…
谢谢,
第一种方法 -使用Application.Match
(更快的一个):
Dim colNum
With ws2
colNum = Application.Match("Transaction ID", .Range("1:1"), 0)
If IsError(colNum) Then
MsgBox "Column with header 'Transaction ID' not found"
Exit Sub
End If
CurrInvoiceNum = .Cells(a, colNum).Value
End With
第二种方法 -使用.Find
:
Dim rng As Range
With ws2
Set rng = .Range("1:1").Find(What:="Transaction ID", LookAt:=xlWhole)
If rng Is Nothing Then
MsgBox "Column with header 'Transaction ID' not found"
Exit Sub
End If
CurrInvoiceNum = .Cells(a, rng.Column).Value
End With
两种方法都假设您的标题在第一行:.Range("1:1")
假设列名在第一行:
Sub dural()
Set r = Rows(1).Find(What:="Transaction Id")
a = 7
CurrInvoiceNum = r.Offset(a - 1, 0).Value
End Sub