#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default summary sheet

I have data that I want to move to a different summary sheet. I am bale to do
this but, I would like the information in the next available row not with
blank rows between the entries. This is done several times a day so
autofilter would be a time consuming option. Thanks for your help
GeorgeR
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 84
Default summary sheet

If I understand your question, you have data like:

xxxxx xxx xxx
<blank row
xxxxx xxx xxx
xxxxx xxxx xxx
etc.

And you want to copy the data to another sheet - likely appending to the end
on the other sheet but don't want the blank rows to appear on the second
sheet. If this is correct, you could copy all of the rows (including the
blanks); paste them into your second (summary) sheet; then sort (either just
the highlighted rows or all of them). The blank rows will pop to the bottom.

"GeorgeR" wrote:

I have data that I want to move to a different summary sheet. I am bale to do
this but, I would like the information in the next available row not with
blank rows between the entries. This is done several times a day so
autofilter would be a time consuming option. Thanks for your help
GeorgeR

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default summary sheet

Hi Bob
Having to do it to each sheet manually is what I am trying to avoid. What I
was hoping is that there is a function out there that would append the latest
entry below the last entry on the summary sheet.

"BobT" wrote:

If I understand your question, you have data like:

xxxxx xxx xxx
<blank row
xxxxx xxx xxx
xxxxx xxxx xxx
etc.

And you want to copy the data to another sheet - likely appending to the end
on the other sheet but don't want the blank rows to appear on the second
sheet. If this is correct, you could copy all of the rows (including the
blanks); paste them into your second (summary) sheet; then sort (either just
the highlighted rows or all of them). The blank rows will pop to the bottom.

"GeorgeR" wrote:

I have data that I want to move to a different summary sheet. I am bale to do
this but, I would like the information in the next available row not with
blank rows between the entries. This is done several times a day so
autofilter would be a time consuming option. Thanks for your help
GeorgeR

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default summary sheet

Sub findbottom_paste()
Dim rng1 As Range
Dim rng2 As Range
Set rng1 = Selection
Set rng2 = Worksheets("Sheet2").Cells(Rows.Count, 1).End(xlUp) _
.Offset(1, 0)
rng1.copy Destination:=rng2
End Sub


Gord Dibben MS Excel MVP

On Wed, 8 Oct 2008 10:26:35 -0700, GeorgeR
wrote:

I have data that I want to move to a different summary sheet. I am bale to do
this but, I would like the information in the next available row not with
blank rows between the entries. This is done several times a day so
autofilter would be a time consuming option. Thanks for your help
GeorgeR


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default summary sheet

THank you very much That's perfect

"Gord Dibben" wrote:

Sub findbottom_paste()
Dim rng1 As Range
Dim rng2 As Range
Set rng1 = Selection
Set rng2 = Worksheets("Sheet2").Cells(Rows.Count, 1).End(xlUp) _
.Offset(1, 0)
rng1.copy Destination:=rng2
End Sub


Gord Dibben MS Excel MVP

On Wed, 8 Oct 2008 10:26:35 -0700, GeorgeR
wrote:

I have data that I want to move to a different summary sheet. I am bale to do
this but, I would like the information in the next available row not with
blank rows between the entries. This is done several times a day so
autofilter would be a time consuming option. Thanks for your help
GeorgeR



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Summary Sheet Tamara Excel Discussion (Misc queries) 0 July 30th 08 05:43 PM
summary Sheet [email protected] Excel Worksheet Functions 0 March 26th 08 08:09 AM
summary sheet thaenn Excel Discussion (Misc queries) 3 July 23rd 07 04:06 PM
How can i copy data from a tabbed working sheet to a summary sheet StephenF Excel Discussion (Misc queries) 1 March 15th 07 03:40 PM
Relative Sheet Reference (Summary Sheet) [email protected] Excel Discussion (Misc queries) 2 October 1st 05 10:42 AM


All times are GMT +1. The time now is 12:57 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"