+ Reply to Thread
Results 1 to 11 of 11

Capture cells from one sheet into another. Hide/Unhide Sheets

Hybrid View

jj72uk Capture cells from one sheet... 10-09-2009, 01:19 PM
JBeaucaire Re: Capture cells from one... 10-09-2009, 01:58 PM
Richard Buttrey Re: Capture cells from one... 10-09-2009, 02:09 PM
jaslake Re: Capture cells from one... 10-09-2009, 02:31 PM
jj72uk Re: Capture cells from one... 10-09-2009, 04:10 PM
jaslake Re: Capture cells from one... 10-09-2009, 11:16 PM
jaslake Re: Capture cells from one... 10-10-2009, 06:31 PM
jj72uk Re: Capture cells from one... 10-12-2009, 09:05 AM
jj72uk Re: Capture cells from one... 10-12-2009, 10:38 AM
Rick_Stanich Re: Capture cells from one... 10-12-2009, 10:48 AM
jaslake Re: Capture cells from one... 10-12-2009, 08:28 PM
  1. #1
    Valued Forum Contributor jj72uk's Avatar
    Join Date
    03-22-2008
    Location
    Essex, England
    MS-Off Ver
    Work - Office 2000, Home - Office 2007E
    Posts
    360

    Capture cells from one sheet into another. Hide/Unhide Sheets

    I would post this in the general excel help forum but if i do i guess it would be moved here.

    There is 2 parts to my question and I will explain them as best as i can.

    1. I have a front sheet and 12 other sheets ( 1 for each month of the year) they all have the same layout. On my front sheet I want to create a button which will capture the sheet onto my front sheet for the current month, whether this means to make 12 buttons to choose which month is displayed on the front sheet or one that detects the date by system time i dont mind.

    2. These 12 sheets will ideally be hidden and what I am wanting is again, on the front sheet 12 buttons for each sheet to bring up the corresponding hidden sheet so they can be viewed, and then on each of the 12 sheets another button which will hide them and return the user to the front sheet.

    I hope ive explained myself properly.

    Any help?

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    Click GO ADVANCED and use the paperclip icon to post up your workbook. We'll take a look for you.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    Hi,

    One solution.

    Assumes your from sheet is called 'Front'. Change the second macro as appropriate if not.

    1. Create a list of month names and name the range 'months'
    2. Create a validation drop down cell and use the list parameter and specify '=months'. And name this cell 'Selection'
    3. Create the two macros shown below in the VBE
    4. On the front sheet add a button and make it run the 'ShowMonth' macro
    5. On the month sheets add a button and make them run the 'ShowFrontSheet' macro. (Create a button on one of the months and then just copy it and paste to the other 11 sheets).


    Sub ShowMonth()
        Dim x As Integer
        Application.ScreenUpdating = False
        
        For x = 1 To Worksheets.Count
            Sheets(x).Visible = True
        Next x
        
        For x = 1 To Worksheets.Count    '12
            If Sheets(x).Name <> Range("selection") Then Sheets(x).Visible = False
        Next x
    
    End Sub
    Sub ShowFrontSheet()
        Dim x As Integer
        
        For x = 1 To Worksheets.Count    '12
            If Sheets(x).Name <> "Front" Then
                Sheets(x).Visible = False
            Else
                Sheets(x).Visible = True
            End If
        Next x
    
    End Sub
    HTH
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  4. #4
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    The attached workbook shows another approach. There are several ways to accomplish your task.
    J
    Attached Files Attached Files
    John

    If you have issues with Code I've provided, I appreciate your feedback.

    In the event Code provided resolves your issue, please mark your Thread as SOLVED.

    If you're satisfied by any members response to your issue please use the star icon at the lower left of their post.

  5. #5
    Valued Forum Contributor jj72uk's Avatar
    Join Date
    03-22-2008
    Location
    Essex, England
    MS-Off Ver
    Work - Office 2000, Home - Office 2007E
    Posts
    360

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    2 great solutions, thank you.

    How about the first question? Being able to transpose the data on one of these hidden sheets onto the front sheet?

    I'll post my workbook on monday as i've left it in the office

  6. #6
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    OK...I read your original post and I assumed (not good) that you only wanted to view the selected month. I didn't believe you really wanted to import the data from the selected month to the "Front" sheet. My mistake and I apologize.
    Now, may I ask why? What is the purpose of copying the data from the selected month to the front sheet? Knowing what you plan to do with this information may help me in developing the procedure.
    J

  7. #7
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    I had some time today (Saturday) and looked at your request. Play with the attachment and see if it does what you need.

    Hope this helps. J
    Attached Files Attached Files

  8. #8
    Valued Forum Contributor jj72uk's Avatar
    Join Date
    03-22-2008
    Location
    Essex, England
    MS-Off Ver
    Work - Office 2000, Home - Office 2007E
    Posts
    360

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    OK, loving your last way of doing it. Though when it copies it doesnt keep the same cell sizes etc, but that's an easy fix.

    When you go to the sheet and then re-hide it using the 'hide month' macro is there any way when the sheet closes it defaults back to a particular sheet? In this case my first sheet is called 'Front' and when I unhide a sheet it would be good to go back to 'Front' ?

  9. #9
    Valued Forum Contributor jj72uk's Avatar
    Join Date
    03-22-2008
    Location
    Essex, England
    MS-Off Ver
    Work - Office 2000, Home - Office 2007E
    Posts
    360

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    Dont worry..solved it...

    Sheets ("Front").Select

  10. #10
    Forum Contributor Rick_Stanich's Avatar
    Join Date
    11-21-2005
    Location
    Ladson SC
    MS-Off Ver
    Office365
    Posts
    1,177

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    Quote Originally Posted by jj72uk View Post
    I would post this in the general excel help forum but if i do i guess it would be moved here.

    There is 2 parts to my question and I will explain them as best as i can.

    1. I have a front sheet and 12 other sheets ( 1 for each month of the year) they all have the same layout. On my front sheet I want to create a button which will capture the sheet onto my front sheet for the current month, whether this means to make 12 buttons to choose which month is displayed on the front sheet or one that detects the date by system time i dont mind.

    2. These 12 sheets will ideally be hidden and what I am wanting is again, on the front sheet 12 buttons for each sheet to bring up the corresponding hidden sheet so they can be viewed, and then on each of the 12 sheets another button which will hide them and return the user to the front sheet.

    I hope ive explained myself properly.

    Any help?
    Take a look at this. No buttons, just hyperlinks.
    http://www.excelforum.com/excel-prog...-on-index.html
    Regards

    Rick
    Win10, Office 365

  11. #11
    Forum Expert jaslake's Avatar
    Join Date
    02-21-2009
    Location
    Atwood Lake in Mid NE Ohio...look it up.
    MS-Off Ver
    Excel 2010 2019
    Posts
    12,749

    Re: Capture cells from one sheet into another. Hide/Unhide Sheets

    I see you solved this issue
    is there any way when the sheet closes it defaults back to a particular sheet?
    Did you solve this one
    when it copies it doesn't keep the same cell sizes etc
    J

+ 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