Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Whoops!!!
Change line below singleArea.Copy Destination:=Cells(0 + i, 1) to: singleArea.Copy Destination:=Cells(0 + i, 26) "Jim May" wrote in message news:MoAld.4028$Dk.3549@lakeread08... Here's something of interest; Requirements: 1) Column Z should be empty 2) Before running first of two macros -- click on #1 cell, then hold down the control key and continue to click of any number of additional cells, up to 20 (say for example).. Once you've select then: 3) Run Macro: Sub CellsToGrabUp() i = 0 Set rangeToUse = Selection If rangeToUse.Areas.Count = 1 Then rangeToUse.Copy Destination:=Range("Z1") Else For Each singleArea In rangeToUse.Areas i = i + 1 singleArea.Copy Destination:=Cells(0 + i, 1) Next End If End Sub ' the selected cells will be listed in Z1:Z20 4) Run Macro: Sub CellsToPrint() Dim Lr As Integer Lr = Cells(Rows.Count, 26).End(xlUp).Row ActiveSheet.PageSetup.PrintArea = "Z1:Z" & Lr ActiveSheet.PrintPreview ' change PrintPreview to PrintOut if hard copy desired ActiveSheet.PageSetup.PrintArea = "" End Sub HTH, JMay "Frank Kabel" wrote in message ... Hi do you mean 'File - Print Area'? -- Regards Frank Kabel Frankfurt, Germany Marie wrote: I am using Excel 2003, I would like to print only the names, addresss. Is it possible to sellect only what you need and print it, from the cells? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
getting cells to show on print preview & print out | Excel Discussion (Misc queries) | |||
How can I set some cells to not print w/o changing print layout? | Excel Discussion (Misc queries) | |||
How to not print some cells | Excel Worksheet Functions | |||
How can I print current row in same place on paper but not print surrounding cells??? | New Users to Excel | |||
print view & print, in excel, different size cells | Excel Discussion (Misc queries) |