Issues with timestamp now()

RJGibson

New Member
Joined
May 17, 2019
Messages
14
Hi All,

Any help attained would be great, I am not the best using VBA so hence the query.

I have a sheet where users submit their completed work and a cell calculates the % of work done. I have 4 other cells that have % thresholds from 25%/50%/75%.

Is there a way for me to have a timestamp generated once the threshold ~% of work complete has been added, apologies on the crude example below cant upload images in work :(
Name% Complete25%50%75%100%
RJ25Timestamp

<tbody>
</tbody>

The current code we were using is as follows, is there a way to generate the timestamp one time only in each cell?

Private Sub Worksheet_Change(ByVal Target As Range)
Dim A As Range: Set A = Range("A3:A6")
Dim v As String
If Intersect(Target, A) Is Nothing Then Exit Sub

Application.EnableEvents = False
v = Target.Value
If v = "25%" Then Target.Offset(0, 1) = Now()
If v = "50%" Then Target.Offset(0, 2) = Now()
If v = "75%" Then Target.Offset(0, 3) = Now()
If v = "100" Then Target.Offset(0, 4) = Now()
Application.EnableEvents = True
End Sub

Regards,
Ray
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Try
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim A As Range: Set A = Range("A3:A6")
Dim v As String
If Intersect(Target, A) Is Nothing Then Exit Sub
Application.EnableEvents = False
v = Target.Value
If v = 0.25 And Target.Offset(0, 1) = "" Then Target.Offset(0, 1) = Now()
If v = 0.5 And Target.Offset(0, 2) = "" Then Target.Offset(0, 2) = Now()
If v = 0.75 And Target.Offset(0, 3) = "" Then Target.Offset(0, 3) = Now()
If v = 1 And Target.Offset(0, 4) = "" Then Target.Offset(0, 4) = Now()
Application.EnableEvents = True
End Sub

Note by putting the values in quotes you turn them into text strings and not numbers "25%" is a text string .25 is a number
 
Last edited:
Upvote 0
Quick question. I can get this to work if im manually changing a cell in the range. Is there a way to make it work if the cell is updated from another source?
 
Upvote 0
The code above will run if a cell in column A is change. If column A has formulas in it when the formula updates will not run the code. The code would have to be changed to look at the cell that actually updated.
 
Upvote 0
I see, so if my Range is for instance M33:M55 would I have to change the code to look at M33, M34, M35 and so on?. I honestly have no idea how that is done.
 
Upvote 0
Try

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim A As Range: Set A = Range("M33:A35")
Dim v As String
If Intersect(Target, A) Is Nothing Then Exit Sub
Application.EnableEvents = False
v = Target.Value
If v = 0.25 And Target.Offset(0, 1) = "" Then Target.Offset(0, 1) = Now()
If v = 0.5 And Target.Offset(0, 2) = "" Then Target.Offset(0, 2) = Now()
If v = 0.75 And Target.Offset(0, 3) = "" Then Target.Offset(0, 3) = Now()
If v = 1 And Target.Offset(0, 4) = "" Then Target.Offset(0, 4) = Now()
Application.EnableEvents = True
End Sub
 
Upvote 0
Dim A As Range: Set A = Range("M33:A35")
I think you mean:
Code:
Dim A As Range: Set A = Range("M33:[COLOR=#ff0000][B]M[/B][/COLOR]35")

I see, so if my Range is for instance M33:M55 would I have to change the code to look at M33, M34, M35 and so on?. I honestly have no idea how that is done.
Which columns are you checking for values and which columns are you wanting to update now?
 
Upvote 0
ok so im checking column M:33 > M:55 for change in values then entering the timestamp as the offset like a timestamp progress bar
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,565
Members
449,038
Latest member
Guest1337

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