+ Reply to Thread
Results 1 to 2 of 2

Attempting to lock dates into a cell after they are populated

Hybrid View

  1. #1
    Registered User
    Join Date
    11-27-2012
    Location
    Dallas, TX
    MS-Off Ver
    Excel 2007
    Posts
    2

    Attempting to lock dates into a cell after they are populated

    I am currently attempting to lock in dates after they are populated in a cell. I have a check box in cell B1, in the cell below I have the formula =IF(B1=TRUE,TODAY(),""). I want the box below to capture the date and not update the next day when I check the box in B1. Any suggestions?

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

    Re: Attempting to lock dates into a cell after they are populated

    A macro similar to this one would do it.
    Sub Macro1()
        Range("C1").Select
        Selection.Copy
        Range("B2").Select
        Selection.PasteSpecial Paste:=xlPasteValues
    End Sub
    This assumes your formula listed is in C1 and you want the permanent date in cell B2. It would only update when you invoke the macro.
    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)

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