Pregunta para Luis Mondelo: Macro para buscar y agrupar desde otra hoja del mismo libro excel.
Es una macro enviada por ti anteriormente. Sólo Modifique algunos rangos de búsqueda
Sub busca_y_copia_VALORBUSCADO()
Application.ScreenUpdating = False
Range("J11:L700").Clear
Range("E1000").CurrentRegion.Sort key1:=Range("E1000"), order1:=xlAscending, Header:=xlYes, ordercustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
valor = Range("C11").Value
Set busca = ActiveSheet.Range("E1000:E" & Range("E10000").End(xlUp).Row).Find(valor, LookIn:=xlValues, lookat:=xlWhole)
If Not busca Is Nothing Then
ubica = busca.Address
Range(ubica).Select
fila = Range(ubica).Row
contarsi = Application.WorksheetFunction.CountIf(Range("E1000:E" & Range("E10000").End(xlUp).Row), valor)
Range(Cells(fila, 5), Cells(fila + contarsi - 1, 7)).Copy '
Range("J11").PasteSpecial xlPasteAll
End If
Application.ScreenUpdating = True
End Sub
Pero necesito buscar los datos de los rangos E1000 : E10000 en otra hoja,. No sé como hacerlo si pudieras ayudarme.. !!!