Date stamping

SoftwareTestGuy

New Member
Joined
Sep 17, 2002
Messages
5
I need to create a test plan tracking tool that will keep a running date stamp history. I enter Pass/FAil when running the test, then stamp a cell with Now() to indicate when the test was run.

I need to be able to 1) keep a history of each time a test is run (w/o using the change history function of Excel - it's not a shared spreadsheet) by either copying the current cell value to another cell or keeping the current value of the cell if it hasn't changed.

Does any of this make any sense, and does anyone have a slick way to do it?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
quote: "I need to be able to 1) keep a history of each time a test is run (w/o using the change history function of Excel - it's not a shared spreadsheet) by either copying the current cell value to another cell or keeping the current value of the cell if it hasn't changed. " end quote

You could tape a macro for selecting a cell and chancing the formula that it contains NOW() to a value, could you?

Sub dateandtime()
'
' dateandtime Macro
' Macro recorded 19.9.2002 by YLIJOHE
'

'
Range("A1").Select
ActiveCell.FormulaR1C1 = "=NOW()"
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Application.CutCopyMode = False
Selection.NumberFormat = "m/d/yy"
End Sub
This message was edited by ylijohe on 2002-09-19 00:29
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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