Computing.Net > Forums > Office Software > excel question

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

excel question

Reply to Message Icon

Name: fight
Date: September 24, 2008 at 19:08:04 Pacific
OS: xp
CPU/Ram: 2gb
Product: hp
Comment:

i need to print 2 diff worksheets in the same file. Is there a way i could set so that when i click print from worksheet 1, it will also print a copy in worksheet 3. worksheet 2 will no be printed.
thanks



Sponsored Link
Ads by Google

Response Number 1
Name: DerbyDad03
Date: September 24, 2008 at 19:41:01 Pacific
Reply:

Manually, you could hold the Ctrl key and click the sheet tabs for Sheets 1 and 3 and then click Print. It will print out whatever sheets you have "grouped" in this manner.

To make it automatic, assign this macro to a custom button. It will...

1 - Store the name of the ActiveSheet
2 - Select Sheets 1 and 3
3 - Print them out
4 - Reselect the ActiveSheet

Sub PrintMySheets()
CurSht = ActiveSheet.Name
Sheets(Array(1, 3)).Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Sheets(CurSht).Select
End Sub


0

Response Number 2
Name: DerbyDad03
Date: September 25, 2008 at 06:07:37 Pacific
Reply:

P.S. It would be helpful if you could be more specific with your subject lines. If everyone who had an Excel question used a subject line as generic as Excel Question, searching the archives by subject line and browsing the subject lines for threads of interest would be pretty much useless.

You currently have 2 threads running in this forum with a subject line of "excel question" - threads that are not related to the same subject manner.

May I suggest something like these subject lines in the future:

Hiding "0" Results in Excel
and
Printing Multiple Sheets in Excel


0

Response Number 3
Name: fight
Date: September 25, 2008 at 18:31:15 Pacific
Reply:

thanks...and will do!


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: excel question

Microsoft Excel question www.computing.net/answers/office/microsoft-excel-question/2320.html

Excel Questions (Office XP) www.computing.net/answers/office/excel-questions-office-xp/1117.html

Excel Question www.computing.net/answers/office/excel-question/2433.html