+ Reply to Thread
Results 1 to 2 of 2

Convert String to a Worksheet type variable

  1. #1
    cd
    Guest

    Convert String to a Worksheet type variable

    How do I convert a string with the name of a worksheet
    to a Worksheet type variable?


  2. #2
    Dave Peterson
    Guest

    Re: Convert String to a Worksheet type variable

    Dim Wks as worksheet
    dim myName as string

    myname = "hi there"

    set wks = nothing
    on error resume next
    set wks = activeworkbook.worksheets(myname)
    on error goto 0

    if wks is nothing then
    msgbox "no such name in the activeworkbook"
    else
    'ok
    end if

    cd wrote:
    >
    > How do I convert a string with the name of a worksheet
    > to a Worksheet type variable?


    --

    Dave Peterson

+ 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