Hola. ¿ Cómo hago para buscar los mismos datos pero desde otra hoja con esta macro? =/
http://www.todoexpertos.com/categorias/tecnologia-e-internet/software-y-aplicaciones/microsoft-excel/respuestas/e3oqei7fa1b84/macro-para-buscar-y-agrupar-datos-en-excel
Sub busca_y_copia()
Range("h7:q50").Clear
Range("h100").CurrentRegion.Sort key1:=Range("h100"), order1:=xlAscending, Header:=xlYes, ordercustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
valor = Range("j2").Value
Set busca = ActiveSheet.Range("h100:h" & Range("h10000").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("h100:h" & Range("h10000").End(xlUp).Row), valor)
Range(Cells(fila, 8), Cells(fila + contarsi - 1, 17)).Copy
Range("h7").PasteSpecial xlPasteAll
End If
End Sub