A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do I import a list of names into a separate form that prints .



 
 
Thread Tools Display Modes
  #1  
Old October 8th, 2005, 06:22 PM
Paul Smith
external usenet poster
 
Posts: n/a
Default How do I import a list of names into a separate form that prints .

I have a list of names on one worksheet.
I have a second worksheet that is basically a form.
I would like to print out each page with the names from worksheet one
without having to do a new worksheet for each tab.
Somehow, I should be able to get the list to printout each name on a
separate page showing the pertinent data.
  #2  
Old October 8th, 2005, 07:22 PM
Bernie Deitrick
external usenet poster
 
Posts: n/a
Default

Paul,

If the names are on sheet1 in cell A1:A100 and the form is on sheet2, with
the name going into cell A1, something the macro below will work.

HTH,
Bernie
MS Excel MVP

Sub PaulPrint()
Dim myCell As Range
For Each myCell In Worksheets("Sheet1").Range("A1:A100")
With Worksheets("Sheet2")
.Range("A1").Value = myCell.Value
.PrintOut
End With
Next myCell
End Sub



"Paul Smith" Paul wrote in message
...
I have a list of names on one worksheet.
I have a second worksheet that is basically a form.
I would like to print out each page with the names from worksheet one
without having to do a new worksheet for each tab.
Somehow, I should be able to get the list to printout each name on a
separate page showing the pertinent data.



 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
List of Names, Dates, Durations ... Biff Worksheet Functions 2 September 29th, 2005 08:38 AM
Cleaning up a GIANT mailing list, with many duplicate names PSlaven33 New Users 3 June 10th, 2005 01:23 PM
Add contacts to "Select Names" list Old Shrimp General Discussion 1 April 30th, 2005 01:29 AM
Exploding names from a distribution list into separate contacts John Contacts 1 April 18th, 2005 09:42 PM
Union Query Not Returning A Value Jeff G Running & Setting Up Queries 2 October 19th, 2004 05:47 PM


All times are GMT +1. The time now is 02:30 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.