Saltar al contenido
View in the app

A better way to browse. Learn more.

Ayuda Excel

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Ejecutar macro indefinidamente

publicado

Buenas tardes a todos,

estaba ejecutando una macro para eliminar celda y fila superior, funciona bien pero no logro que se ejecute indefinidamente hasta que deje de hallar el target, no se si es mejor utilizar un Do While Loop en la estructura del código, adjunto el excel tal y como lo tengo actualmente.

muchas gracias

Eliminar.xltm

Featured Replies

publicado

Mira este codigo lo uso para lo mismo, el hecho de que este eliminado filas, puede que tarde mucho la macro leyendo y buscando, este macro  filtra  y elimina lo que especifiques y lo hace en segundos!!!

ya solo al ultimo tu ordenas tu informacion 

Espero que te sirva

 

http://www.mediafire.com/file/o5sgx44dgzw79mh/eliminar2.xltm

publicado

Para menos de 5.000 filas te vale con esto:

Sub EliminarFila()
Application.ScreenUpdating = False
For x = Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
   If Range("A" & x) = "Buenas tardes" Then
      Rows(x - 1).Delete
      x = x - 1
   End If
Next
End Sub

 

  • 1 month later...
  • Enigma25 bloqueó este tema

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.