+ Reply to Thread
Results 1 to 14 of 14

Date Picker 64-Bit Excel 2013

  1. #1
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Date Picker 64-Bit Excel 2013

    I'm wondering if anyone has a good date picker they use in their projects and is willing to share?

    I would like to have a shortcut that opens the date picker and returns the selected value into the current active cell.

  2. #2
    Forum Expert nigelog's Avatar
    Join Date
    12-14-2007
    Location
    Cork, Ireland
    MS-Off Ver
    Office 365 Windows 10
    Posts
    2,293

    Re: Date Picker 64-Bit Excel 2013

    this has served well for years and works with 64bit - right click on cell
    Attached Files Attached Files

  3. #3
    Forum Expert torachan's Avatar
    Join Date
    12-27-2012
    Location
    market harborough, england
    MS-Off Ver
    Excel 2010
    Posts
    4,410

    Re: Date Picker 64-Bit Excel 2013

    This one has also be around for years.
    Do not know if it always runs well, but have used it many times without problem, nice and compact.
    Same process, right click in cell, drop-down menu, select insert date.
    torachan.
    Attached Files Attached Files

  4. #4
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by torachan View Post
    This one has also be around for years.
    Do not know if it always runs well, but have used it many times without problem, nice and compact.
    Same process, right click in cell, drop-down menu, select insert date.
    torachan.
    I get this error when I open the file.

    Annotation 2019-06-12 205709.jpg

  5. #5
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by nigelog View Post
    this has served well for years and works with 64bit - right click on cell
    Thanks but when I choose a date with day greater than 12 I get the date as text.

    Annotation 2019-06-12 210403.jpg

  6. #6
    Forum Expert nigelog's Avatar
    Join Date
    12-14-2007
    Location
    Cork, Ireland
    MS-Off Ver
    Office 365 Windows 10
    Posts
    2,293

    Re: Date Picker 64-Bit Excel 2013

    @kersplash
    formatting in code probably needs attention

  7. #7
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by nigelog View Post
    this has served well for years and works with 64bit - right click on cell
    Also nothing comes up in the menu when I right-click in a cell.

  8. #8
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by nigelog View Post
    @kersplash
    formatting in code probably needs attention
    There's only about 5 lines of code, unless I'm missing something?

  9. #9
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Date Picker 64-Bit Excel 2013

    The one in link is my pick, when I have to use one. Though I tend to avoid use of date picker/calendar forms.
    https://trevoreyre.com/portfolio/excel-datepicker/
    "Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something."
    ― Robert A. Heinlein

  10. #10
    Forum Expert nigelog's Avatar
    Join Date
    12-14-2007
    Location
    Cork, Ireland
    MS-Off Ver
    Office 365 Windows 10
    Posts
    2,293

    Re: Date Picker 64-Bit Excel 2013

    Check code for form itself - I cant replicate your problem but I was forcing format to dd/mm/yy as I needed that output
    each of the 42 button codes will need to be edited with find/replace

    the right click was removed in that version - this should suffice
    Attached Files Attached Files
    Last edited by nigelog; 06-12-2019 at 09:17 AM.

  11. #11
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by nigelog View Post
    Check code for form itself - I cant replicate your problem but I was forcing format to dd/mm/yy as I needed that output
    each of the 42 button codes will need to be edited with find/replace

    the right click was removed in that version - this should suffice
    Ahhh. Got it in the form code now. Thanks.

  12. #12
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by CK76 View Post
    The one in link is my pick, when I have to use one. Though I tend to avoid use of date picker/calendar forms.
    https://trevoreyre.com/portfolio/excel-datepicker/
    This one does look nice. Why not use a date picker?

  13. #13
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Date Picker 64-Bit Excel 2013

    I prefer keyboard entry
    Ex: Validation on keyup event on textbox or datevalue validation in a cell.

    Only time I use it, is when day of week alignment becomes important for data entry (and for other users).

  14. #14
    Forum Expert kersplash's Avatar
    Join Date
    11-22-2016
    Location
    Perth
    MS-Off Ver
    Home 2016 (Windows 10)/Work 2013 Pro Plus (Windows 10)
    Posts
    2,012

    Re: Date Picker 64-Bit Excel 2013

    Quote Originally Posted by CK76 View Post
    I prefer keyboard entry
    Ex: Validation on keyup event on textbox or datevalue validation in a cell.

    Only time I use it, is when day of week alignment becomes important for data entry (and for other users).
    Understood.

+ 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. how to add date picker in excel cell to enter a date
    By roofi in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-16-2019, 10:01 AM
  2. How to Add Date Picker in Excel
    By Shahbazk in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 03-21-2018, 10:50 AM
  3. Setting date picker date and having 2 columns to each date for excel calendar
    By bqheng in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-10-2017, 11:13 PM
  4. [SOLVED] Macro for Date Picker in excel 2013
    By Neilesh Kumar in forum Excel General
    Replies: 14
    Last Post: 05-04-2017, 07:18 AM
  5. Replies: 8
    Last Post: 03-08-2017, 11:00 PM
  6. DT Picker in excel 2013
    By mdshotgun in forum Excel General
    Replies: 0
    Last Post: 12-15-2012, 06:08 PM
  7. [SOLVED] Is there a way to get a Date Picker Box in Excel?
    By Andrew Holzman in forum Excel General
    Replies: 1
    Last Post: 01-24-2006, 05:50 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