Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / January 2006

Tip: Looking for answers? Try searching our database.

auto copy and past

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
cdixon - 23 Jan 2006 00:32 GMT
Need help. I need a macro or program that can sort and copy the
information I enter in one sheet over to another sheet. The information
needs to be sorted by name and filed on the distention sheet in that
order. As I enter the information or by a command.
Example:  
Sheet 1:        John
        Tom
        Jim
        Bob
        Tom
        Bob

Sheet 2 The information would look like this   

        John
        Tom
        Tom
        Bob
        Bob

Any Idea or am I in to deep?

Signature

cdixon

Michael Gill - 23 Jan 2006 00:52 GMT
Hi cdixon,

Try this one:
Sub SheetCopy()

   Columns("A:A").Select
   Selection.Copy
   Sheets("Sheet2").Select
   Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone,
SkipBlanks:= _
       False, Transpose:=False
   Application.CutCopyMode = False
   Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlGuess, _
       OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
       DataOption1:=xlSortNormal
End Sub

Michael
-------------
Michael Gill
- If you found this post useful please press "Yes" under the "Was this post
helpful" section - Thanks :)

> Need help. I need a macro or program that can sort and copy the
> information I enter in one sheet over to another sheet. The information
[quoted text clipped - 17 lines]
>
> Any Idea or am I in to deep?
kickbush - 24 Jan 2006 03:36 GMT
I have an Excel spreadsheet created for my small scooter (moped)
dealership. Right now I end up having to re-type the same info (name,
address, price, VIN, etc) on each sheet for the differnet forms I have
to fill in (large, lengthy, boring forms). Is there any way I can have
sheet one be a "general info" sheet where I enter the info once and it
automatically appears in select spots on sheets 2 and 3? This would be
a FANTASTIC time saving feature for me!

HELP!

Swamped in repeated data entry.

Bob

Signature

kickbush

Peo Sjoblom - 24 Jan 2006 03:53 GMT
If you create a template (save as *.xlt) then every time you will open a
copy of that template and then just fill in what's not already filled in

Signature

Regards,

Peo Sjoblom

Portland, Oregon

> I have an Excel spreadsheet created for my small scooter (moped)
> dealership. Right now I end up having to re-type the same info (name,
[quoted text clipped - 9 lines]
>
> Bob
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.