Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to link a Control to an Excel cell. When I click the control (e.g.
maybe a square date box or down arrow as in Validate) I want to see at top a changeable "YEAR" and "MONTH" and below it, by week, the weekdays for "YEAR" and "MONTH". Once I have selected the "YEAR" and "MONTH" I need, I click a day of the week and the control must then insert the date (for selected "DAY", "MONTH" and "YEAR") in the cell that is linked to the control. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You may want to check out Ron de Bruin's pop up calendar
Calendar on the page - pop-up version http://www.rondebruin.nl/calendar.htm "Janas in RSA" wrote: I want to link a Control to an Excel cell. When I click the control (e.g. maybe a square date box or down arrow as in Validate) I want to see at top a changeable "YEAR" and "MONTH" and below it, by week, the weekdays for "YEAR" and "MONTH". Once I have selected the "YEAR" and "MONTH" I need, I click a day of the week and the control must then insert the date (for selected "DAY", "MONTH" and "YEAR") in the cell that is linked to the control. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you - I see the calendar - what I need is once I have the year and
month needed on the calendar, I want to click a day and the calendar must disappear and the seleted day, month and year must be present in the cell - similar to the "Validate" function where you can select an item and it appears in the cell. "Duke Carey" wrote: You may want to check out Ron de Bruin's pop up calendar Calendar on the page - pop-up version http://www.rondebruin.nl/calendar.htm "Janas in RSA" wrote: I want to link a Control to an Excel cell. When I click the control (e.g. maybe a square date box or down arrow as in Validate) I want to see at top a changeable "YEAR" and "MONTH" and below it, by week, the weekdays for "YEAR" and "MONTH". Once I have selected the "YEAR" and "MONTH" I need, I click a day of the week and the control must then insert the date (for selected "DAY", "MONTH" and "YEAR") in the cell that is linked to the control. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Read the info on the page below the code
Tip 2: If you want that the calendar disappear when you click on a date in the control you have two options. After ActiveCell.Select in the Calendar_Click event add this line. Calendar1.Visible = False Or select a cell next to the date cell, Replace ActiveCell.Select for: ActiveCell.Offset(0, 1).Select -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Janas in RSA" wrote in message ... Thank you - I see the calendar - what I need is once I have the year and month needed on the calendar, I want to click a day and the calendar must disappear and the seleted day, month and year must be present in the cell - similar to the "Validate" function where you can select an item and it appears in the cell. "Duke Carey" wrote: You may want to check out Ron de Bruin's pop up calendar Calendar on the page - pop-up version http://www.rondebruin.nl/calendar.htm "Janas in RSA" wrote: I want to link a Control to an Excel cell. When I click the control (e.g. maybe a square date box or down arrow as in Validate) I want to see at top a changeable "YEAR" and "MONTH" and below it, by week, the weekdays for "YEAR" and "MONTH". Once I have selected the "YEAR" and "MONTH" I need, I click a day of the week and the control must then insert the date (for selected "DAY", "MONTH" and "YEAR") in the cell that is linked to the control. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
double click on cell that have link, Excel will jump to the refere | Excel Worksheet Functions | |||
In Excel How do I return the Month for a specific date | Excel Discussion (Misc queries) | |||
In Excel, look at a date field and return just the month.. | Excel Discussion (Misc queries) | |||
Click on cell-calendar drops down-click on date-date fills cell. . | Setting up and Configuration of Excel | |||
Excel: How do I set up a cell to click it to link a database? | Excel Discussion (Misc queries) |