Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How 2 Programmatically copy active worksheet?

Status
Not open for further replies.

dkathrens77

Technical User
May 4, 2003
11
US
I am working at an office that uses MS Office 97.

I'm trying to build an Excel application to track daily productivity in (loads scheduled) a trucking dispatch
office.

The helpful IT people neglected to install the VBA help files.

Can anyone post the code to copy the active worksheet?

Also, is there a way to build a chart including data ranges on different worksheets?

Thanks,

DennisK





 
This will copy the active sheet and place it at the end.

ActiveSheet.Copy After:=Sheets(Sheets.Count)

HTH,
Eric
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top