PC Review


Reply
Thread Tools Rate Thread

Deleting blank rows

 
 
Rafeek
Guest
Posts: n/a
 
      27th Aug 2011
In an accounting software generated reports, there are alternate blank rows
between rows that contains data.

Row1: Data
Row2: Blank
Row3: Data
Row4: Blank
Row5: Data
...................
...................

I need the blank rows removed for exporting this data into MS Access.
Presently I am doing this by deleting one by one and would love to learn any
short cut that is available in excel. I am using Excel 2007.

Thanks in advance.
rafeek.




 
Reply With Quote
 
 
 
 
Jim Cone
Guest
Posts: n/a
 
      27th Aug 2011
You can also just sort the data.
Blank cells sort to the bottom.
--
Jim Cone
Portland, Oregon USA
http://www.contextures.com/excel-sort-addin.html
editorial review of special sort add-in (30 ways to sort)






"Rafeek" <(E-Mail Removed)>
wrote in message
news:j3aikb$7eu$(E-Mail Removed)...
> In an accounting software generated reports, there are alternate blank rows between rows that
> contains data.
>
> Row1: Data
> Row2: Blank
> Row3: Data
> Row4: Blank
> Row5: Data
> ..................
> ..................
>
> I need the blank rows removed for exporting this data into MS Access. Presently I am doing this by
> deleting one by one and would love to learn any short cut that is available in excel. I am using
> Excel 2007.
>
> Thanks in advance.
> rafeek.
>
>
>
>



 
Reply With Quote
 
Rafeek
Guest
Posts: n/a
 
      27th Aug 2011
Thank you, Ron.

"Ron Rosenfeld" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Sat, 27 Aug 2011 13:57:51 +0300, "Rafeek" <(E-Mail Removed)> wrote:
>
>>In an accounting software generated reports, there are alternate blank
>>rows
>>between rows that contains data.
>>
>>Row1: Data
>>Row2: Blank
>>Row3: Data
>>Row4: Blank
>>Row5: Data
>>..................
>>..................
>>
>>I need the blank rows removed for exporting this data into MS Access.
>>Presently I am doing this by deleting one by one and would love to learn
>>any
>>short cut that is available in excel. I am using Excel 2007.
>>
>>Thanks in advance.
>>rafeek.
>>
>>
>>

>
> For each row in a selected range, this macro will check the first cell in
> the row. If that cell is empty, it will delete the entire row. Empty
> means that the cell is truly empty. So if there is a <space> or a null
> string or a formula that is returning a blank, these will not be deleted.
> This behavior can be changed, if necessary, so as to delete anything that
> appears blank.
>
> Also, the selection of the range could be automated in a variety of ways.
>
> To enter this Macro (Sub), <alt-F11> opens the Visual Basic Editor.
> Ensure your project is highlighted in the Project Explorer window.
> Then, from the top menu, select Insert/Module and
> paste the code below into the window that opens.
>
> To use this Macro (Sub), first select the range to process. Then <alt-F8>
> opens the macro dialog box. Select the macro by name, and <RUN>.
>
> ======================
> Option Explicit
> Sub DeleteBlankRows()
> Dim rg As Range
> Dim i As Long
> Set rg = Selection
> For i = rg.Rows.Count To 1 Step -1
> If IsEmpty(rg(i, 1)) Then
> rg(i, 1).EntireRow.Delete
> End If
> Next i
> End Sub
> ========================



 
Reply With Quote
 
Rafeek
Guest
Posts: n/a
 
      27th Aug 2011
Thank you, Jim.

"Jim Cone" <(E-Mail Removed)> wrote in message
news:j3am40$poq$(E-Mail Removed)...
> You can also just sort the data.
> Blank cells sort to the bottom.
> --
> Jim Cone
> Portland, Oregon USA
> http://www.contextures.com/excel-sort-addin.html
> editorial review of special sort add-in (30 ways to sort)
>
>
>
>
>
>
> "Rafeek" <(E-Mail Removed)>
> wrote in message
> news:j3aikb$7eu$(E-Mail Removed)...
>> In an accounting software generated reports, there are alternate blank
>> rows between rows that contains data.
>>
>> Row1: Data
>> Row2: Blank
>> Row3: Data
>> Row4: Blank
>> Row5: Data
>> ..................
>> ..................
>>
>> I need the blank rows removed for exporting this data into MS Access.
>> Presently I am doing this by deleting one by one and would love to learn
>> any short cut that is available in excel. I am using Excel 2007.
>>
>> Thanks in advance.
>> rafeek.
>>
>>
>>
>>

>
>



 
Reply With Quote
 
Gord
Guest
Posts: n/a
 
      27th Aug 2011
Without sorting..............select column A then
Edit>Goto>Special>Blanks

Edit>Delete>Entire Row.


Gord Dibben Microsoft Excel MVP

On Sat, 27 Aug 2011 17:07:33 +0300, "Rafeek" <(E-Mail Removed)>
wrote:

>Thank you, Jim.
>
>"Jim Cone" <(E-Mail Removed)> wrote in message
>news:j3am40$poq$(E-Mail Removed)...
>> You can also just sort the data.
>> Blank cells sort to the bottom.
>> --
>> Jim Cone
>> Portland, Oregon USA
>> http://www.contextures.com/excel-sort-addin.html
>> editorial review of special sort add-in (30 ways to sort)
>>
>>
>>
>>
>>
>>
>> "Rafeek" <(E-Mail Removed)>
>> wrote in message
>> news:j3aikb$7eu$(E-Mail Removed)...
>>> In an accounting software generated reports, there are alternate blank
>>> rows between rows that contains data.
>>>
>>> Row1: Data
>>> Row2: Blank
>>> Row3: Data
>>> Row4: Blank
>>> Row5: Data
>>> ..................
>>> ..................
>>>
>>> I need the blank rows removed for exporting this data into MS Access.
>>> Presently I am doing this by deleting one by one and would love to learn
>>> any short cut that is available in excel. I am using Excel 2007.
>>>
>>> Thanks in advance.
>>> rafeek.
>>>
>>>
>>>
>>>

>>
>>

>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
deleting blank rows for up to 60000 rows of data gbpg Microsoft Excel Programming 3 27th Dec 2009 08:37 PM
deleting blank rows KRK Microsoft Excel New Users 3 27th Jun 2009 12:51 PM
Deleting blank rows which contain blank drop-down list boxes Al Microsoft Excel Programming 2 18th Feb 2009 01:37 PM
deleting blank rows jaimetimbrell Microsoft Excel Programming 0 12th Feb 2006 11:06 AM
Deleting Blank Rows =?Utf-8?B?QW1iZXIgTQ==?= Microsoft Excel Worksheet Functions 4 4th Oct 2004 06:55 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:58 PM.