Consulting

Results 1 to 8 of 8

Thread: Solved: Tab sheet Name In the Sell

  1. #1

    Exclamation Solved: Tab sheet Name In the Sell

    Hi All,

    Plz I'm looking to find Macro it can copy the name of all tab sheet as (sheet1, sheet2, sheet3 ... ) and pot it in the different sell in one sheet as

    sheet1
    sheet2
    sheet3

    Plz ASAP,

    thanks

  2. #2
    Administrator
    VP-Knowledge Base
    VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    [VBA]Dim i As Long

    For i = 1 To Sheets.Count
    Cells(i, 1) = Sheets(i).Name
    Next
    [/VBA]
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

  3. #3

    Exclamation thanks

    Could you please attached excel file explain it,

    And thanks for required,

  4. #4
    Administrator
    VP-Knowledge Base VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    Check the VBA Help files for basic information on Sub routines and Functions.
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

  5. #5

    Smile

    thanks for route ....

  6. #6

    Post Please ....

    Please Mr.mdmackillop if you have a solution for this issues Please sent it to me because from morning I'm read to solve it but it's useless and I'm new in VBA Program,

    and on the attached file you can see what i mean exactly .
    Attached Files Attached Files

  7. #7
    Administrator
    VP-Knowledge Base VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    See attached
    Attached Files Attached Files
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

  8. #8
    Thank You Very Very Much ...........

Posting Permissions

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