+ Reply to Thread
Results 1 to 5 of 5

Formula Needed to auto populate current date when text entered into a cell

Hybrid View

excelteam777 Formula Needed to auto... 11-15-2013, 09:16 PM
Pete_UK Re: Formula Needed to auto... 11-15-2013, 09:27 PM
vlady Re: Formula Needed to auto... 11-15-2013, 09:36 PM
excelteam777 Re: Formula Needed to auto... 11-15-2013, 09:50 PM
alansidman Re: Formula Needed to auto... 11-15-2013, 09:38 PM
  1. #1
    Forum Contributor
    Join Date
    07-06-2013
    Location
    USA
    MS-Off Ver
    MS Office 2019 Pro Plus
    Posts
    182

    Formula Needed to auto populate current date when text entered into a cell

    I simply need to auto populate the current date in the format 11/15/13 when any text is entered into another cell.

    B29:B39 = current date to be populated (formula)

    C29:39 = any text

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,411

    Re: Formula Needed to auto populate current date when text entered into a cell

    What do you mean by "current" date? If you put =TODAY() in a cell, it will give you today's date. However, if you open the file in the future, that would automatically update to show the day that you opened it. I suspect you want a time-stamp (or static date) in those cells which does not change, and a formula can't give you that.

    Hope this helps.

    Pete

  3. #3
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Formula Needed to auto populate current date when text entered into a cell

    usually vba is used on this type of problems (pasting the time stamp) in the cell


    but for experiment try this one.

    go to option->formulas -> check iteration.
    in B29 creating a circular reference...
    =IF(C29="","",IF(B29="",TODAY(),B29))
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  4. #4
    Forum Contributor
    Join Date
    07-06-2013
    Location
    USA
    MS-Off Ver
    MS Office 2019 Pro Plus
    Posts
    182

    Re: Formula Needed to auto populate current date when text entered into a cell

    this seems to work. I am just wondering if the date will stay the same when i open the file on another day.

    thanks

    Also any advice on this problem???

    I would like to count only when "yes" is entered into a cell and to do so on a 24 hour time table with the totals resetting to "0" when a new day starts.
    Also would like to do the same in another total it for the month based on a date format of 11/15/13 from another cell.

    1st: Hour formula:

    B24 = formula
    C29 = where "yes" or 'No" will be entered

    count on a 24hour time table only when "yes" is entered.

    2nd: Monthly Formula:

    Q4 = Formula
    B29 = Date (format is 11/15/13) however if that needs to change let me know.
    C29 = where "yes" or 'No" will be entered

    count when "yes" is entered for that particular month

  5. #5
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,704

    Re: Formula Needed to auto populate current date when text entered into a cell

    Try this:

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Intersect(Target, Range("C29:C39")) Is Nothing Then Exit Sub
        Range("B29:B39") = Date
    
    End Sub

    Put this in the worksheet event and not as a module.
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

+ 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. Formula needed to populate associate name when ID number entered in another cell
    By excelteam777 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-20-2013, 12:06 AM
  2. Replies: 3
    Last Post: 07-01-2013, 01:58 PM
  3. Auto Populate different Cells depending on date entered
    By jpjb in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-15-2013, 11:12 AM
  4. [SOLVED] Auto-fill Date when text is entered in another cell
    By Fett2oo5 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-07-2013, 04:12 PM
  5. Replies: 2
    Last Post: 10-30-2012, 06:08 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