Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Microsoft Support > Microsoft Office support
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Microsoft Office support MS Office support forum

Reply
 
LinkBack Thread Tools
Old 12-15-2006, 04:50 AM   #1 (permalink)
Registered User
 
Join Date: Oct 2004
Posts: 203
OS: Win XP


Question Excel Spread sheet

I have an excel spreadsheet that I want to print out. I want everything to be exactly the same on each print out, except for a name.

I have 25 different names I want to be in 1 cell.

Each different name would be by itself.

I need to print this out once every week.

I don't want to copy and paste it into different sheets becasue I want to be able to change the setup on the sheet and have it affect every sheet except for the name area.

Any idea's on how to accomplish this?
lindseyschlabac is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 12-15-2006, 01:42 PM   #2 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 25,512
OS: Win XP Pro SP3 / Win 7 Pro

My System

Blog Entries: 10
Hi

Some questions I'm afraid. What is the cell address? How is this cell populated - by hand, by code, the result of a formula or what? I take it you are referring to just one sheet and want to change one cell value 25 times, once each time before printing? Or have I misunderstood? Please tell me as much as you can about your setup and what you require.
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



PC Safety & Security::PC running a bit slow?::Donate::Photographers Corner
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 12-16-2006, 04:11 AM   #3 (permalink)
Registered User
 
Join Date: Oct 2004
Posts: 203
OS: Win XP


Quote:
Originally Posted by Glaswegian View Post
Hi

Some questions I'm afraid. What is the cell address? How is this cell populated - by hand, by code, the result of a formula or what? I take it you are referring to just one sheet and want to change one cell value 25 times, once each time before printing? Or have I misunderstood? Please tell me as much as you can about your setup and what you require.

The cell address is A3.

I have a list of 25 names I could place them on an excel sheet to be populated or I could put it in the code. The names will not change. What would be best?

You haven't misunderstood. I need 25 of the same sheet except each sheet has a different name in A3.
lindseyschlabac is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 12-16-2006, 09:34 AM   #4 (permalink)
Moderator/ Rangemaster TSF Academy; Analyst, Security Team; Oor Wullie; TSF Surgeon and Resident Comic
 
Glaswegian's Avatar
 
Join Date: Sep 2005
Location: Glasgow
Posts: 25,512
OS: Win XP Pro SP3 / Win 7 Pro

My System

Blog Entries: 10
Hi Lindsey

This should work nicely - I've used the Before_Print event to change the value of A3 to a name in the list, then print the sheet before moving on to the next name. The code goes in ThisWorkbook Module.
Code:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim myRng As Range

Set myRng = Sheets("Sheet1").Range("A3")

Sheets("Sheet1").Range("K1").Activate

Do Until IsEmpty(ActiveCell)
    myRng.Value = ActiveCell.Value
    ActiveSheet.PrintOut copies:=1
    ActiveCell.Offset(1, 0).Activate
Loop
End Sub
Remember to change the range values to suit wherever your list is located (it can be on another sheet if required) - I just used column K for testing purposes. Note the code assumes that there will be a blank cell after the last name in your list - this is vital!

Let me know if this works.
__________________
Iain - Defender of the Haggis and all things Scottish.
I don't help by PM - post in the Forums.



PC Safety & Security::PC running a bit slow?::Donate::Photographers Corner
Glaswegian is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 02:02 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85