ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Columns in Excel Spreadsheet (https://www.excelbanter.com/excel-discussion-misc-queries/114082-columns-excel-spreadsheet.html)

Karen

Columns in Excel Spreadsheet
 
I have a spreadsheet that is currently 143 pages long with 5 columns of
information. However, is there an easier way, other than 'copy and paste' 2
pages of information onto one? Can it be done the same way as in Word where
you highlight your information and then say 'I want 2 sections of 5 columns
of information on 1 page.'

I hope there is an easy way to do this other than 'copy and pasting'. Please
advise.

Jaleel

Columns in Excel Spreadsheet
 
Can you tell me in Word where is such an option? In Excel why can't you try
for Data - Consolidate?

Regards,

Jaleel

"Karen" wrote:

I have a spreadsheet that is currently 143 pages long with 5 columns of
information. However, is there an easier way, other than 'copy and paste' 2
pages of information onto one? Can it be done the same way as in Word where
you highlight your information and then say 'I want 2 sections of 5 columns
of information on 1 page.'

I hope there is an easy way to do this other than 'copy and pasting'. Please
advise.


Karen

Columns in Excel Spreadsheet
 
In Word, you would go to 'Format', 'Columns'. This option is also on the
Standard Toolbar.

If I use the 'Data', 'Consolidate', what do I need to put in the boxes to
make this happen?

"Jaleel" wrote:

Can you tell me in Word where is such an option? In Excel why can't you try
for Data - Consolidate?

Regards,

Jaleel

"Karen" wrote:

I have a spreadsheet that is currently 143 pages long with 5 columns of
information. However, is there an easier way, other than 'copy and paste' 2
pages of information onto one? Can it be done the same way as in Word where
you highlight your information and then say 'I want 2 sections of 5 columns
of information on 1 page.'

I hope there is an easy way to do this other than 'copy and pasting'. Please
advise.


Gord Dibben

Columns in Excel Spreadsheet
 
Karen

10 columns, 50 rows per page.

Sub Move_Sets()
Dim iSource As Long
Dim iTarget As Long
iSource = 1
iTarget = 1

Do
Cells(iSource, "A").Resize(50, 5).Cut _
Destination:=Cells(iTarget, "A")
Cells(iSource + 50, "A").Resize(50, 5).Cut _
Destination:=Cells(iTarget, "F")
iSource = iSource + 100
iTarget = iTarget + 50
PageBreak = xlPageBreakManual
Loop Until IsEmpty(Cells(iSource, "A").Value)

End Sub


Gord Dibben MS Excel MVP

On Thu, 12 Oct 2006 13:44:02 -0700, Karen
wrote:

In Word, you would go to 'Format', 'Columns'. This option is also on the
Standard Toolbar.

If I use the 'Data', 'Consolidate', what do I need to put in the boxes to
make this happen?

"Jaleel" wrote:

Can you tell me in Word where is such an option? In Excel why can't you try
for Data - Consolidate?

Regards,

Jaleel

"Karen" wrote:

I have a spreadsheet that is currently 143 pages long with 5 columns of
information. However, is there an easier way, other than 'copy and paste' 2
pages of information onto one? Can it be done the same way as in Word where
you highlight your information and then say 'I want 2 sections of 5 columns
of information on 1 page.'

I hope there is an easy way to do this other than 'copy and pasting'. Please
advise.



Karen

Columns in Excel Spreadsheet
 
Thanks Gord. I will try this when I at the office tomorrow. Wish me luck!

"Gord Dibben" wrote:

Karen

10 columns, 50 rows per page.

Sub Move_Sets()
Dim iSource As Long
Dim iTarget As Long
iSource = 1
iTarget = 1

Do
Cells(iSource, "A").Resize(50, 5).Cut _
Destination:=Cells(iTarget, "A")
Cells(iSource + 50, "A").Resize(50, 5).Cut _
Destination:=Cells(iTarget, "F")
iSource = iSource + 100
iTarget = iTarget + 50
PageBreak = xlPageBreakManual
Loop Until IsEmpty(Cells(iSource, "A").Value)

End Sub


Gord Dibben MS Excel MVP

On Thu, 12 Oct 2006 13:44:02 -0700, Karen
wrote:

In Word, you would go to 'Format', 'Columns'. This option is also on the
Standard Toolbar.

If I use the 'Data', 'Consolidate', what do I need to put in the boxes to
make this happen?

"Jaleel" wrote:

Can you tell me in Word where is such an option? In Excel why can't you try
for Data - Consolidate?

Regards,

Jaleel

"Karen" wrote:

I have a spreadsheet that is currently 143 pages long with 5 columns of
information. However, is there an easier way, other than 'copy and paste' 2
pages of information onto one? Can it be done the same way as in Word where
you highlight your information and then say 'I want 2 sections of 5 columns
of information on 1 page.'

I hope there is an easy way to do this other than 'copy and pasting'. Please
advise.





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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com