Ver Mensaje Individual
  #21 (permalink)  
Antiguo 22/04/2015, 09:06
fredduarte2003
 
Fecha de Ingreso: abril-2015
Mensajes: 14
Antigüedad: 9 años, 7 meses
Puntos: 2
Respuesta: como buscar un registro en otras paginas con una macro en excel

por ahora si jajaja. gracias por todo, aca te dejo el codigo que estoy usando y corre perfectamente
Private Sub CommandButton1_Click()
For fila = 1 To 1000
If Hoja3.Cells(fila, 1) = "" Then
final = fila
Exit For
End If
Next
selecelda = 2
For selecelda = 2 To final
segundo:
Sheets("productos").Select
Cells(selecelda, 1).Select
aseleccionar = ActiveCell
Sheets(aseleccionar).Range("e1").Copy
Cells(selecelda, 4).PasteSpecial xlPasteValues
selecelda = selecelda + 1
If selecelda <> final Then GoTo segundo
Sheets("productos").Select
Next
Application.CutCopyMode = False

End Sub