Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/10/2009, 11:47
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años
Puntos: 839
Respuesta: Excel: Buscar un dato y seleccionarlo

Prueba esto:
Código vb:
Ver original
  1. Dim busca_envio As Range
  2. Set busca_envio = [D:D].Find(What:=Hoja1.Range("H53").Value)
  3. If Not busca_envio Is Nothing Then
  4.     busca_envio.Activate
  5.     'Encontrado
  6. Else
  7.     'No encontrado
  8. End If
Saludos.
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.