+ Reply to Thread
Results 1 to 5 of 5

Ready-made named sheets

  1. #1
    Registered User
    Join Date
    09-06-2006
    Posts
    3

    Ready-made named sheets

    Hello.

    My problem is the following:

    SOMETIMES I am in the need of opening a blank Excel file that has ready-named sheets.

    I want to be able to automatically name five (5) sheets in my recently opened file as follows:

    sheet 1: inpTrData
    sheet 2: desTrData
    sheet 3: inpValData
    sheet 4: desValData
    sheet 5: inpTestData

    Please remember that I want to do this ocassionally and not every time I launch Excel.

    How can I achieve this?

    THANKS IN ADVANCE.

  2. #2
    Registered User
    Join Date
    09-06-2006
    Posts
    3

    Solution for Ready-made named sheets

    Figured out myself one way:

    Simply RECORD a Macro.

  3. #3
    Forum Contributor
    Join Date
    06-01-2006
    Posts
    324
    You could use a macro:

    Sub SheetSetUp()
    Sheets("Sheet1").Name = "inpTrData"
    Sheets("Sheet2").Name = "desTrData"
    Sheets("Sheet3").Name = "inpValData"
    Sheets("Sheet4").Name = "desValData"
    Sheets("Sheet5").Name = "inpTestData"
    End Sub

    You can export the module and load it up for each new workbook you need it, or you can just copy and paste this every time you need it...
    Google is your best friend!

  4. #4
    Registered User Chappo's Avatar
    Join Date
    09-04-2006
    Posts
    33

    simple

    Or... the most simple way I can think of is save a template with the named sheets on it and when you want a sheet like that, open up your template and then save it under a different name when your finished.

    "There has never been reported stomach aches or related medical trauma that takes place after swallowing your pride.
    "
    - Daisuke Aramaki

  5. #5
    Registered User
    Join Date
    09-06-2006
    Posts
    3
    Thanks for the ideas, guys. Worked just fine.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1