Luis Alejandrogarcia Orduz

Luis Alejandrogarcia Orduz

siempre da todo lo que tienes, y veras que la vida te da todo lo que necesitas
 325 puntos  Colombia @malejito desde - visto

Respuestas

Respuesta en 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 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,...