Respuesta
en
Microsoft Excel
y en 2 temas más
a
¿Como puedo mejorar esta macro?
Sub eliminarfilas() Do While ActiveCell.Value <> "" If ActiveCell.Value = "AREPA DE MAIZ AMARILLO SANTANDEREANA" Then ActiveCell.EntireRow.Delete ActiveCell.Offset(-1, 0).Select Else End If If ActiveCell.Value = "BOLA PREMIUM" Then...
Respuesta
en
Visual Basic
y en 2 temas más
a
Macro para borrar contenido de filas según valor específico
Este código me sirvió para hacer lo que necesitas adáptalo a tu necesidad Sub eliminarfilas() Do While ActiveCell.Value <> "" If ActiveCell.Value = "70" Then ActiveCell.EntireRow.Delete ActiveCell.Offset(-1, 0).Select Else End If ActiveCell.Offset(1,...