+ Reply to Thread
Results 1 to 11 of 11

Drop down calendar

  1. #1
    Registered User
    Join Date
    09-18-2009
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2013
    Posts
    44

    Drop down calendar

    Hello....

    Does anybody have a developed Macro for a calendar that opens when a cell is selected?

    Thanks much

  2. #2
    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: Drop down calendar

    Hi Latlong

    Try the Code in the attached...works on any cell in Column A.

    It's non ActiveX so requires no references.
    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.

  3. #3
    Registered User
    Join Date
    09-18-2009
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2013
    Posts
    44

    Re: Drop down calendar

    Thank you very much John. Works great! Should I decide to move to Column B, is that an easy fix?

    Scott

    Quote Originally Posted by jaslake View Post
    Hi Latlong

    Try the Code in the attached...works on any cell in Column A.

    It's non ActiveX so requires no references.

  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: Drop down calendar

    Hi Scott

    Right Click on the Target Sheet Tab...Select View Code...Change this Line of Code
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    09-18-2009
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2013
    Posts
    44

    Re: Drop down calendar

    Perfect. Thanks again your help!
    Cheers!


    Quote Originally Posted by jaslake View Post
    Hi Scott

    Right Click on the Target Sheet Tab...Select View Code...Change this Line of Code
    Please Login or Register  to view this content.

  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: Drop down calendar

    You're welcome...glad I could help. Thanks for the Rep.

  7. #7
    Registered User
    Join Date
    11-17-2019
    Location
    australia
    MS-Off Ver
    2016
    Posts
    3

    Re: Drop down calendar

    Hey there Users, can I ask - is there a way to link the date for a new cell in the calendar, to the date in the last entered cell, so that sequential dates can be selected without having to reselect year, month, day again?

    Eg, for historical date entries I have to chose each time the year, month & day.

    Thanks

  8. #8
    Registered User
    Join Date
    11-17-2019
    Location
    australia
    MS-Off Ver
    2016
    Posts
    3

    Re: Drop down calendar

    Alternatively, can I point to a date on the SS to be used as the reference date for the sheet?
    Eg, the calendar always refers to 2018-07-22 as the base date.

  9. #9
    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: Drop down calendar

    Hi AdyHawk
    Welcome to the Forum!

    Please see Forum Rule #4 above...
    4. Do not post a new help request in an existing thread. (B)
    You will need to start your own Thread

  10. #10
    Registered User
    Join Date
    11-17-2019
    Location
    australia
    MS-Off Ver
    2016
    Posts
    3

    Re: Drop down calendar

    Ah - thanks for the clarification (sorry).

    FYI I fixed it so it works for me - by referring to a date cell on the sheet, all subsequent calendar references point to this start date:


    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim Obj As Object
    Dim ws As Worksheet
    Set ws = ActiveSheet

    If Target.Cells.Count > 1 Then Exit Sub
    Application.EnableEvents = False

    If Target.Column = 2 Then
    If IsDate(Target.Value) Then
    myDate = Target.Value
    Else
    myDate = Range("F5").Value
    End If


    Set Obj = PassUF()

    Obj.Show_Cal
    End If
    Application.EnableEvents = True
    End Sub

    So I am entering dates in Column 2, and using the Sheet Date Period cell as the reference (F5).

    Hope this helps anyone else looking for this solution!
    Last edited by AdyHawk; 11-18-2019 at 01:10 AM.

  11. #11
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,610

    Re: Drop down calendar

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread

    As this is an old post your help is probably lost to many...

+ 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. Replies: 3
    Last Post: 04-16-2014, 07:17 PM
  2. Drop Down Calendar
    By Rocky2013 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-14-2012, 06:59 PM
  3. Drop down calendar
    By BBoyAl in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-17-2012, 12:56 PM
  4. Calendar drop down
    By NickJW in forum Excel General
    Replies: 7
    Last Post: 12-21-2010, 11:22 AM
  5. Calendar Drop-Down Help
    By XCRP83X in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-07-2010, 01:49 PM

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