+ Reply to Thread
Results 1 to 4 of 4

Hide/Unhide Cells based on a Date Range

Hybrid View

  1. #1
    Registered User
    Join Date
    03-18-2014
    Location
    Charleston, WV
    MS-Off Ver
    Excel 2003
    Posts
    2

    Exclamation Hide/Unhide Cells based on a Date Range

    Hi all:

    I am very new to VBA Code and need some help. I need to have a code that will hide/unhide cells based on a date range.

    Cell A1 contains the formula for todays date, based on that answer, I want to hide/unhide columns based on a weekly date range.

    Ex.:

    Today is 03/18/2014 I want excel to say
    If A1(Today) is greater than 03/14/2014 and less than or equal to 03/21/2014 then unhide column E and hide the rest.

    Then let's say Today is 03/22/2014. I want excel to say
    If A1(Today) is greater than 03/21/2014 and less than or equal to 03/28/2014 then unhide column F and hide the rest.

    columns in questions are D-AC

    HELP!!!!!!!!!!

  2. #2
    Forum Contributor
    Join Date
    03-28-2013
    Location
    *
    MS-Off Ver
    Excel 2010
    Posts
    226

    Re: Hide/Unhide Cells based on a Date Range

    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim myDate As Date
    myDate = Target
        If Not Intersect(Target, Range("a1")) Is Nothing Then
            If myDate > "3/14/2014" And myDate <= "03/21/2014" Then
                Columns("D:AC").EntireColumn.Hidden = True
                Columns("E:E").EntireColumn.Hidden = False
            End If
            If myDate > "3/21/2014" And myDate <= "03/28/2014" Then
                Columns("D:AC").EntireColumn.Hidden = True
                Columns("F:F").EntireColumn.Hidden = False
            End If
        End If
                
    End Sub
    Give Feedback and Click(*)

  3. #3
    Registered User
    Join Date
    03-18-2014
    Location
    Charleston, WV
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Hide/Unhide Cells based on a Date Range

    This is not working for me.

    I am using Excel 2003, would that be why?

    When I try to preview the macro it doesn't even recognized the macro as existing

  4. #4
    Forum Contributor
    Join Date
    03-28-2013
    Location
    *
    MS-Off Ver
    Excel 2010
    Posts
    226

    Re: Hide/Unhide Cells based on a Date Range

    can u attach the example file?

    thank you
    venkat

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] First unhide all rows - then hide rows based on specific cell value for a range of cells
    By robbiekh in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 10-22-2013, 05:46 PM
  2. Hide/Unhide Rows & Colums based on Separate range
    By TohirT in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-11-2013, 10:07 AM
  3. Hide and Unhide sheets based on Date [better code]
    By Deryl in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-30-2012, 09:22 AM
  4. Hide/Unhide Based on Several Date Range
    By b2995 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-20-2012, 01:03 PM
  5. Replies: 2
    Last Post: 01-09-2012, 07:13 AM

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