Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Tom Doggett
 
Posts: n/a
Default Copy sheet 1 data to sheet 2 cells.

i have 2 sheets in an excel file. the 2 sheets are identical except the 2nd
one has "COPY" on it. i want to make it so i can fill out the first sheet
with text. and it copy to the 2nd sheet. it is a shipping form. after i fill
in the blanks and print the two sheets, i will have a copy to keep with the
rest of the paperwork. i currently use carbon copy papers and write it out.
any help it much appreciated!!!

td


  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi Tom

You can use a simple print macro like this that use D1 for the word Copy in my example.

Sub printtwo()
With Sheets("Sheet1")
.PrintPreview
.Range("D1").Value = "COPY"
.PrintPreview
.Range("D1").Value = ""
End With
End Sub

Change PrintPreview to PrintOut if it working correct
Change the sheet name to yours

Alt-F11
InsertModule from the menubar
paste the sub in there
Alt-Q to go back to Excel


If you do Alt-F8 you get a list of your macro's
Select "printtwo" and press Run




--
Regards Ron de Bruin
http://www.rondebruin.nl


"Tom Doggett" wrote in message ...
i have 2 sheets in an excel file. the 2 sheets are identical except the 2nd one has "COPY" on it. i want to make it so i can fill
out the first sheet with text. and it copy to the 2nd sheet. it is a shipping form. after i fill in the blanks and print the two
sheets, i will have a copy to keep with the rest of the paperwork. i currently use carbon copy papers and write it out. any help it
much appreciated!!!

td



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy data in other sheet Moynul Hoque Excel Worksheet Functions 0 June 23rd 05 05:17 PM
data from one sheet to several in sequential order! firecord New Users to Excel 6 June 22nd 05 05:10 PM
Entering Data in multiple cells on one sheet & having it auto upda haynblend Excel Worksheet Functions 2 March 27th 05 12:41 AM
Copying multiple sheets from one book 2 another and undertake spec Pank Mehta Excel Discussion (Misc queries) 14 March 16th 05 04:41 PM
Pulling data from 1 sheet to another Dave1155 Excel Worksheet Functions 1 January 12th 05 05:55 PM


All times are GMT +1. The time now is 05:07 PM.

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

About Us

"It's about Microsoft Excel"