Excelシートで値セルダを見つける必要があります。私はそれを見つけるためにこのvbaコードを使用していました:
Set cell = Cells.Find(What:=celda, After:=ActiveCell, LookIn:= _
xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:= _
xlNext, MatchCase:=False, SearchFormat:=False)
If cell Is Nothing Then
'do it something
Else
'do it another thing
End If
問題は、Excelの列でのみ値を見つけなければならない場合です。私は次のコードでそれを見つけます:
Columns("B:B").Select
Selection.Find(What:="VA22GU1", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
しかし、値を使用する必要があるため、最初のvbaコードに適応させる方法がわかりませんnothing
。