Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
printing in one paper | Excel Discussion (Misc queries) | |||
put approx. 4 price list on i 1 piece paper with clip art | Setting up and Configuration of Excel | |||
printing on custom paper | New Users to Excel | |||
Printing on paper 36" X 108" | Charts and Charting in Excel | |||
How do i get an excel spreadsheet to fit on one piece of paper | Excel Discussion (Misc queries) |