Mrrrr's Forum (VIEW ONLY)
Un forum care ofera solutii pentru unele probleme legate in general de PC. Pe langa solutii, aici puteti gasi si alte lucruri interesante // A forum that offers solutions to some PC related issues. Besides these, here you can find more interesting stuff.
Lista Forumurilor Pe Tematici
Mrrrr's Forum (VIEW ONLY) | Reguli | Inregistrare | Login

POZE MRRRR'S FORUM (VIEW ONLY)

Nu sunteti logat.
Nou pe simpatie:
Profil loca23
Femeie
23 ani
Cluj
cauta Barbat
23 - 44 ani
Mrrrr's Forum (VIEW ONLY) / Tutoriale si Ghiduri Utile // Tutorials and useful guides / [EXCEL] VBA Code to Delete All Hidden Rows Moderat de TRaP, TonyTzu
Autor
Mesaj Pagini: 1
TRaP
Moderator

Inregistrat: acum 6 ani
Postari: 739
The following code will delete all hidden rows in the active sheet:


Sub deleteAllHidden()
Application.ScreenUpdating = False

Dim lastRow As Long
    lastRow = ActiveSheet.Cells(Rows.Count, "C").End(xlUp).Row

For iCntr = lastRow To 1 Step -1
    If Rows(iCntr).Hidden = True Then
        Rows(iCntr).EntireRow.Delete
    End If
Next

Application.ScreenUpdating = True
End Sub


Source:


pus acum 7 luni
   
Pagini: 1  

Mergi la