remove blank lines from an entire spreadsheet

A

Ashish Mathur

Hi,

Select the sheet area containing the text and blank cells. Do the following

1. Ctrl+G
2. Go to Special
3. Select blanks
4. Click OK

It will highlight all the blank rows in Blue. Now do the following

1. Alt E+D+R (To deletye the rows)

Regards,

Ashish Mathur
 
A

Andri

hope it will help, got from this group also...
put as macro:
Sub Macro1()
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
End Sub
 
Top