Entering a date stamp if a value in cell is True

Bill Williamson

Board Regular
Joined
Oct 7, 2019
Messages
124
Hello everyone,

Couldnt seem to find the correct formula for what I am trying to do.
In Column O There will be a Yes or a No depending on Checkbox selection on userform. Say cell O2 is entered or changed to true then I want cell P2 to have a non changing date stamp.

here is a screen shot of Data sheet.

Thanks in advance,

Bill Williamson

Screenshot%202019-11-11%2012.35.49.png

https://www.dropbox.com/s/bb6566rm07lexjd/Screenshot 2019-11-11 12.35.49.png?dl=0
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Put this in the Sheet1 code module:
Code:
Option Explicit


Private Sub Worksheet_Change(ByVal Target As Range)
    With Application
        .EnableEvents = False
        If Target.Column = 15 And Target.Row <> 1 Then Cells(Target.Row, 16).Value = Date + Time
        .EnableEvents = True
    End With
End Sub
 
Upvote 0
OK I have a question. If I have a date stamp issue, but it is not related to the prior code helped with.
Do I still ask in this thread or should I start a new one?

Thanks,

Bill
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top