+ Reply to Thread
Results 1 to 6 of 6

Entering Dates Quickly

  1. #1
    shawna
    Guest
    Is there a way for the date to automatically update whenever the template is opened?

  2. #2
    Beverly Pastizzo
    Guest

    Entering Dates

    When I enter the date 10-Sep in my date column and go top the next cell, the date turn into a five digit number that seems to have nothing to do with a date. What is wrong? I am new to Excel.

  3. #3
    ajay
    Guest

    entering dates quickly

    IF I CREATE 31 DIFFERENT WORKSHEET AND WANT TO WRITE DATES ON SAME CELL OF EVERY WORKSHET IS SOLUTION IS =TODAY(),BUT IF I WANT DIFFERENT DATES ON EACH WORKSHEET AS SERIAL IE OON SHEET 1 1MAY, SHEET 2 2MAY, SHEET3 3MAY...........
    WHAT I NEED TO DO
    THANK YOU

  4. #4
    shiva
    Guest

    convert text '12/06/1985' in proper dates

    i want to convert this text dates into proper date so can performed mat cal on that data

  5. #5
    D.L.
    Guest

    Automatic update of date/time when clicking a cell

    I would like to be able to click on a cell to automatically populate it w/ the current time (or date). How do I do this? Can I use formulas, or are Macros involved (I am not experienced w/ Macros).

  6. #6
    Forum Contributor
    Join Date
    12-07-2004
    Posts
    596

    Entering Dates Quickly

    Problem:

    Entering dates quickly, without having to use delimiters to separate month, day, and year.

    Solution 1:

    Enter only the \"day\" part of the date and complete it by using the DATE, YEAR, TODAY, and MONTH functions in the following formula:
    =DATE(YEAR(TODAY()),MONTH(TODAY()),A2)
    Thus, on entering \"5\", the formula will automatically create a date representing the 5th of the current month in the current year.

    Solution 2:

    Enter the entire date, without delimiters, and use the DATEVALUE, LEFT, MID, and RIGHT functions as shown in the following formula to convert it to a proper date:
    =DATEVALUE(LEFT(D2,2)&\"/\"&MID(D2,3,2)&\"/\"&RIGHT(D2,2))
    Thus, on entering \"060705\", the above formula will return \"06/07/05\".

    Problem:
    Entering dates quickly, without having to use delimiters to separate month, day, and year.

    Solution 1:

    Enter only the \"day\" part of the date and complete it by using the DATE, YEAR, TODAY, and MONTH functions in the following formula:
    =DATE(YEAR(TODAY()),MONTH(TODAY()),A2)
    Thus, on entering \"5\", the formula will automatically create a date representing the 5th of the current month in the current year.

    Solution 2:

    Enter the entire date, without delimiters, and use the DATEVALUE, LEFT, MID, and RIGHT functions as shown in the following formula to convert it to a proper date:
    =DATEVALUE(LEFT(D2,2)&\"/\"&MID(D2,3,2)&\"/\"&RIGHT(D2,2))
    Thus, on entering \"060705\", the above formula will return \"06/07/05\".

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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