+ Reply to Thread
Results 1 to 6 of 6

Calendar to Pop Up in a specified place

  1. #1
    Registered User
    Join Date
    07-26-2008
    Location
    UK
    Posts
    19

    Calendar to Pop Up in a specified place

    First may I thank every one whose code and help I have used.

    Using the code available about calendars I have one pop up on clicking in a particular cell but it blocks out other things while its open. I would like it to still activate when I select this particular cell but to open up out of range of the data it's blocking. Is this possible please?

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    What code are you using? Does it use ActiveCell?
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    07-26-2008
    Location
    UK
    Posts
    19

    Calendar to Pop Up in a specified place

    Hi, below is the code I am using. Range C4 is the only cell I want it to activate on, selecting any other cell closes it.

    Private Sub Calendar1_Click()
    ActiveCell.Value = CDbl(Calendar1.Value)
    ActiveCell.NumberFormat = "dd/mm/yyyy"
    ActiveCell.Select
    End Sub

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Cells.Count > 1 Then Exit Sub
    If Not Application.Intersect(Range("C4"), Target) Is Nothing Then
    Calendar1.Left = Target.Left + Target.Width - Calendar1.Width
    Calendar1.Top = Target.Top + Target.Height
    Calendar1.Visible = True
    ' select Today's date in the Calendar
    Calendar1.Value = Date
    ElseIf Calendar1.Visible Then Calendar1.Visible = False
    End If
    End Sub

  4. #4
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    Try:
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    07-26-2008
    Location
    UK
    Posts
    19

    Calendar to Pop Up in a specified place

    Will try that out thank you very much.

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Owlsfan,

    Good to see you may have found a solution but you still need to go back and use code tags as per forum rules below.

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ 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. VB Calendar Macro to highlight current date
    By jlcford in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 10-10-2008, 02:00 PM
  2. VBA Calendar Control does not show day numbers. ??
    By Richard Buttrey in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 07-25-2008, 08:26 PM
  3. Replies: 3
    Last Post: 06-02-2008, 06:28 PM
  4. The calendar userform appears blank
    By lottesfog in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-26-2008, 12:57 AM
  5. creating a fairly complicated calendar
    By Jayhawks88 in forum Excel General
    Replies: 1
    Last Post: 05-23-2008, 01:52 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