Jak znaleźć wartość w kolumnie Excela przez vba code Cells.Find

Muszę znaleźć wartośćcelda w arkuszu Excela. Użyłem tego kodu vba, aby go znaleźć:

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

Problem polega na tym, że muszę znaleźć wartośćtylko w kolumnie excel. Znajduję go z następnym kodem:

    Columns("B:B").Select
    Selection.Find(What:="VA22GU1", After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate

Ale nie wiem, jak dostosować go do pierwszego kodu vba, ponieważ muszę użyć tej wartościnothing.

questionAnswers(3)

yourAnswerToTheQuestion