I've got Workbook where I got names and hours worked of employees. I'm looking for comparing rows in one worksheet (Range B6:CC6) and find it in another with selection on cell with employee name (Range A1:A5000) when I change sheets from 1 to 2.
Tried some Range.Find and others, no idea how to do it
Public Sub FindPosition()
    Dim Actcol As Integer, Pos As Range, Name As Range
    Actcol = ActiveCell.Column
    MsgBox "ActiveCell is" & Actcol
    Set Pos = Cells(6, Actcol)
    MsgBox Pos
    Pos.Select
    If Worksheets("Sheet2").Activate Then
        Worksheets("Sheet2").Range("A1:AA5100").Select
        Set Name = Selection.Find(Pos, LookIn:=xlValues)
    End If
End Sub
 
     
    