Seleccionar datos repetido
Hola amigo experto, nuevamente recurriendo a tu alta experiencia, resulta que mediante una macro cargo un combobox de un formulario con datos ubicados en una columna de una hoja(ejm. PLANILLA), y selecciono el nombre deseado en la columna a través de este combobox ,pero existen personas con el mismo nombre y al seleccionar a una segunda o tercera persona con el mismo nombre, la macro se dirige a la que encuentra primero en la columna, ejm si en la fila 2 y 5 esta el nombre de Soris, cuando deseo seleccionar la fila 5, me selecciona la fila 2 ¿como corregir o ajustar ? Copio la macro en el combo, Gracias
Worksheets("PLANILLA").Activate
'Código para buscar datos teniendo la referencia en un COMBOBOX
Cells.Find(what:=PLAMEMEN.ComboBox2, after:=ActiveCell, LookIn:=xlFormulas, _
lookat:=xlPart, searchorder:=xlByColumns, searchdirection:=xlNext, _
MatchCase:=False).Activate
PLAMEMEN.Label3 = ActiveCell
ActiveCell.Offset(0, 1).Select
PLAMEMEN.Label4 = ActiveCell
ActiveCell.Offset(0, 1).Select
Worksheets("PLANILLA").Activate
'Código para buscar datos teniendo la referencia en un COMBOBOX
Cells.Find(what:=PLAMEMEN.ComboBox2, after:=ActiveCell, LookIn:=xlFormulas, _
lookat:=xlPart, searchorder:=xlByColumns, searchdirection:=xlNext, _
MatchCase:=False).Activate
PLAMEMEN.Label3 = ActiveCell
ActiveCell.Offset(0, 1).Select
PLAMEMEN.Label4 = ActiveCell
ActiveCell.Offset(0, 1).Select
1 Respuesta
Respuesta de snaki Fco
1