View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kou Vang[_2_] Kou Vang[_2_] is offline
external usenet poster
 
Posts: 34
Default Selecting after Find Method

How do I select the entire row of C after I find and select it? Thanks

Set C = .Find("Date", LookIn:=xlValues)
If C Is Nothing Then
MsgBox "Not Found!"
Else
C.Select