Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What is a formula I can plug into a macro to select all blank rows in column
A, then deleting the entire row? Thanks!!! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
On Error Resume Next Columns("A").SpecialCells(xlBlanks).EntireRow.Dele te On Error GoTo 0 --- Regards, Norman "bodhisatvaofboogie" wrote in message ... What is a formula I can plug into a macro to select all blank rows in column A, then deleting the entire row? Thanks!!! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
columns("A").specialcells(xlblanks).entirerow.dele te
HTH -- AP "bodhisatvaofboogie" a écrit dans le message de news: ... What is a formula I can plug into a macro to select all blank rows in column A, then deleting the entire row? Thanks!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Maximum Number of Blank Cells between Non Blank Cells in a Range | Excel Worksheet Functions | |||
Selecting non-blank cells | Excel Discussion (Misc queries) | |||
Selecting the first non blank cell in Range | Excel Worksheet Functions | |||
selecting the last non blank row. | Excel Programming | |||
Selecting first blank row | Excel Programming |