+ Reply to Thread
Results 1 to 2 of 2

Create a new Worksheet

  1. #1
    Forum Contributor
    Join Date
    04-09-2005
    Location
    Multan. Pakistan
    Posts
    129

    Question Create a new Worksheet

    Dear Friends.

    How we can create a new temporary worksheet having name "Temp". And when we close our userform it is deleted automatically.

    Thanks

    Syed Haider Ali

  2. #2
    K Dales
    Guest

    RE: Create a new Worksheet

    You should be able to incorporate the commands into existing code.

    In the code that shows your userform:
    Dim TempWS as Worksheet
    Set TempWS = ThisWorkbook.Worksheets.Add
    TempWs.Name = "Temp"
    .... ' Rest of the code that shows the UserForm


    Then, when you hide the userform:
    TempWS.Delete
    .... 'Rest of the code that hides the userform
    --
    - K Dales


    "Syed Haider Ali" wrote:

    >
    > Dear Friends.
    >
    > How we can create a new temporary worksheet having name "Temp". And
    > when we close our userform it is deleted automatically.
    >
    > Thanks
    >
    > Syed Haider Ali
    >
    >
    > --
    > Syed Haider Ali
    > ------------------------------------------------------------------------
    > Syed Haider Ali's Profile: http://www.excelforum.com/member.php...o&userid=21994
    > View this thread: http://www.excelforum.com/showthread...hreadid=490258
    >
    >


+ 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