Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 150
Default printing on 1 piece of paper

hello, i have looked all over the help button for this answer. cant find.
does anyone
know how to print 2 consectutive long rows of information on 1 piece of paper.
It is on 1 excel sheet. i would like it to look like you were reading a book.

example: row 1 12 12 12 12 12 12 12 12 12 12
12 12 12

row 1 12 12 12 12 12
12 12 12 12 12
12 12 12 12 12

--
julie
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default printing on 1 piece of paper

Julie

Your "is now" example shows one row with 13 12's........I think!

Your "want to be" example shows one row with 15 12's in 5 cells or is it 3 rows
of 5 columns each?

How long are the rows?

From A1 to which column?

From A2 to which column?

How many columns do you want when ready to print?

Maybe you should give us some ranges instead of 12's which get line-wrapped in
these posts.

Like A1:AA1 and A2:AA2 or similar.


Gord Dibben MS Excel MVP

On Fri, 7 Mar 2008 15:18:01 -0800, julie
wrote:

hello, i have looked all over the help button for this answer. cant find.
does anyone
know how to print 2 consectutive long rows of information on 1 piece of paper.
It is on 1 excel sheet. i would like it to look like you were reading a book.

example: row 1 12 12 12 12 12 12 12 12 12 12
12 12 12

row 1 12 12 12 12 12
12 12 12 12 12
12 12 12 12 12

--
julie


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 150
Default printing on 1 piece of paper

Sorry gord, but what you said is what i want. i want to row to line wrap on 1
piece
of paper. Say i had 1 row that went from A1: to AZ1 and i want for it to
print
on 1 piece of paper however to it fit so i can save paper and time.

i print these types of rows all the time and need a better system in which
to print
out. thank you
--
julie


"Gord Dibben" wrote:

Julie

Your "is now" example shows one row with 13 12's........I think!

Your "want to be" example shows one row with 15 12's in 5 cells or is it 3 rows
of 5 columns each?

How long are the rows?

From A1 to which column?

From A2 to which column?

How many columns do you want when ready to print?

Maybe you should give us some ranges instead of 12's which get line-wrapped in
these posts.

Like A1:AA1 and A2:AA2 or similar.


Gord Dibben MS Excel MVP

On Fri, 7 Mar 2008 15:18:01 -0800, julie
wrote:

hello, i have looked all over the help button for this answer. cant find.
does anyone
know how to print 2 consectutive long rows of information on 1 piece of paper.
It is on 1 excel sheet. i would like it to look like you were reading a book.

example: row 1 12 12 12 12 12 12 12 12 12 12
12 12 12

row 1 12 12 12 12 12
12 12 12 12 12
12 12 12 12 12

--
julie



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default printing on 1 piece of paper

You can stick the row space-delimited in one cell and then set to wrap text and
autofit.

Print out that cell.

Just be aware that Excel will print out only about 1024 characters from a cell.

A1:AZ1 is 52 cells so you could have up to about 20 characters per cell

Sub ConCat_Cells()
Dim X As Range
Dim y As Range
Dim z As Range
Dim w As String
Dim sbuf As String
w = " "
Set X = Range(Range("A1"), Cells(ActiveCell.Column, _
Columns.Count).End(xlToLeft))
Set z = Application.InputBox("Select Destination Cell", _
"Destination Cell", , , , , , 8)
For Each y In X
If Len(y.Text) 0 Then sbuf = sbuf & y.Text & w
Next
z = Left(sbuf, Len(sbuf) - Len(w))
End Sub



Gord

On Mon, 10 Mar 2008 07:12:00 -0700, julie
wrote:

Sorry gord, but what you said is what i want. i want to row to line wrap on 1
piece
of paper. Say i had 1 row that went from A1: to AZ1 and i want for it to
print
on 1 piece of paper however to it fit so i can save paper and time.

i print these types of rows all the time and need a better system in which
to print
out. thank you


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 150
Default printing on 1 piece of paper

THANK YOU FOR YOUR REPLY I WILL WORK ON IT AND GET BACK TO YOU.

--
julie


"Gord Dibben" wrote:

You can stick the row space-delimited in one cell and then set to wrap text and
autofit.

Print out that cell.

Just be aware that Excel will print out only about 1024 characters from a cell.

A1:AZ1 is 52 cells so you could have up to about 20 characters per cell

Sub ConCat_Cells()
Dim X As Range
Dim y As Range
Dim z As Range
Dim w As String
Dim sbuf As String
w = " "
Set X = Range(Range("A1"), Cells(ActiveCell.Column, _
Columns.Count).End(xlToLeft))
Set z = Application.InputBox("Select Destination Cell", _
"Destination Cell", , , , , , 8)
For Each y In X
If Len(y.Text) 0 Then sbuf = sbuf & y.Text & w
Next
z = Left(sbuf, Len(sbuf) - Len(w))
End Sub



Gord

On Mon, 10 Mar 2008 07:12:00 -0700, julie
wrote:

Sorry gord, but what you said is what i want. i want to row to line wrap on 1
piece
of paper. Say i had 1 row that went from A1: to AZ1 and i want for it to
print
on 1 piece of paper however to it fit so i can save paper and time.

i print these types of rows all the time and need a better system in which
to print
out. thank you



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
printing in one paper Brie Excel Discussion (Misc queries) 2 January 11th 08 08:56 AM
put approx. 4 price list on i 1 piece paper with clip art marylou1 Setting up and Configuration of Excel 0 September 27th 06 10:19 AM
printing on custom paper aschmitz New Users to Excel 4 March 8th 06 09:36 AM
Printing on paper 36" X 108" visdev1 Charts and Charting in Excel 0 August 25th 05 09:43 PM
How do i get an excel spreadsheet to fit on one piece of paper takiled Excel Discussion (Misc queries) 1 March 9th 05 06:44 PM


All times are GMT +1. The time now is 06:03 PM.

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

About Us

"It's about Microsoft Excel"