+ Reply to Thread
Results 1 to 3 of 3

Userform data entry into hidden sheets

  1. #1
    Registered User
    Join Date
    10-19-2005
    Posts
    45

    Userform data entry into hidden sheets

    I have created a report in excel that summarises data from 10 different sheets. Each one of the sheets represents a different department.

    I have created userforms for each department so that the data entry is clean and automated but this has lead to a workbook with 12 sheets in it.

    I would like to have all of the data enrty sheets hidden but the data entry macro I have written will nto enter the data into hidden sheets.

    Is it possible to do so?


  2. #2
    Die_Another_Day
    Guest

    Re: Userform data entry into hidden sheets

    You cannot select hidden sheets, however you can write values to them:
    Sheets("Sheet1").Visible = 2 'VeryHidden
    Sheets("Sheet1").Range("A1") = "Hello"
    MsgBox Sheets("Sheet1").Range("A1")

    Charles

    Pedros wrote:
    > I have created a report in excel that summarises data from 10 different
    > sheets. Each one of the sheets represents a different department.
    >
    > I have created userforms for each department so that the data entry is
    > clean and automated but this has lead to a workbook with 12 sheets in
    > it.
    >
    > I would like to have all of the data enrty sheets hidden but the data
    > entry macro I have written will nto enter the data into hidden sheets.
    >
    > Is it possible to do so?
    >
    >
    >
    >
    > --
    > Pedros
    > ------------------------------------------------------------------------
    > Pedros's Profile: http://www.excelforum.com/member.php...o&userid=28202
    > View this thread: http://www.excelforum.com/showthread...hreadid=572056



  3. #3
    Registered User
    Join Date
    10-19-2005
    Posts
    45
    thanks, much appreciated!!

+ 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