Pregunta   en 
    Microsoft Excel
            
                y en 2  temas más
            
                
                    
            Copiar celdas un número determinado de veces, pegarlas en una hoja diferente y hacer esto tantas veces como filas existan
            Encontré esta macro Dim REPETIR As Integer REPETIR = Range("A194") Range("A194:H194").Select Range(Selection, Selection.End(xlDown)).Select Selection.Copy For Q = 1 To REPETIR Range("A65000").End(xlUp).Offset(1, 0).Select ActiveSheet.Paste Next Q...