K
kirkm
Hi, in the following -
Dim foundCell As Range
Set foundCell = Selection.Find(What:=Format(ChosenDate, "dd mmm
yyyy"), _
After:=Cells(rows.Count, 1), _
LookIn:=xlFormulas, _
LookAt:=xlPart, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, _
MatchCase:=False, _
SearchFormat:=False)
whereabouts would you specify the Sheet Name ?
And does the command
foundCell.Select
Move to a different sheet, if that's where foundCell is ?
Many thanks - Kirk
Dim foundCell As Range
Set foundCell = Selection.Find(What:=Format(ChosenDate, "dd mmm
yyyy"), _
After:=Cells(rows.Count, 1), _
LookIn:=xlFormulas, _
LookAt:=xlPart, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, _
MatchCase:=False, _
SearchFormat:=False)
whereabouts would you specify the Sheet Name ?
And does the command
foundCell.Select
Move to a different sheet, if that's where foundCell is ?
Many thanks - Kirk