Tech Support Guy banner
Status
Not open for further replies.
1 - 8 of 8 Posts

· Registered
Joined
·
42 Posts
Discussion Starter · #1 ·
I have got a spread sheet and i want to print say column A
and D so i select column A hold down CTRL and highlight
column D i then go to print, however it prints it out on
seperate pages, is there anyway to print it on 1 page.

Thanks Michael
.
 

· Registered
Joined
·
42 Posts
Discussion Starter · #3 ·
XL Guru said:
Select columns B & C, rightclick and hide.

Print.

Unhide columns B & C using UnDo.

Rgds,
Andy
Yeah thats what ive been doing but its a bit of a pain in the A$$ when i have a lot of different columns/rows that i wanted printed. Any other suggestions?

Thanks

Michael
 

· Registered
Joined
·
2,708 Posts
If the "pain in the A$$" is that you have to not print B&C today, & then again tomorrow, etc., etc. ; consider defining custom views (via the View menu).

Might also help that you can select column D, click on a border then drag it over B&C while holding down SHIFT to slot it between A&B.

Rgds,
Andy
 

· Registered
Joined
·
2,708 Posts
Not to the best of my knowledge.

You could write some code, but this would just automate the Hide -- Set Print Area -- Unhide steps.

Rgds,
Andy
 

· Registered
Joined
·
2,708 Posts
Yeah, something like that. It's pretty verbose and for selected ranges ; if you're purely hiding columns &/or rows, you might find

Sub Show_All()
ActiveWindow.SelectedSheets.PrintOut Copies:=1, _
Collate:=True
Cells.Select
Selection.EntireColumn.Hidden = False
Selection.EntireRow.Hidden = False
End Sub

vaguely useful for the printing/resetting.

Rgds,
Andy
 
1 - 8 of 8 Posts
Status
Not open for further replies.
Top