ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   display time when macro was last run (https://www.excelbanter.com/excel-programming/428181-display-time-when-macro-last-run.html)

Josh Craig

display time when macro was last run
 
Is there a way I can display in a cell the time a macro was last run?

Any help is appreciated!

Josh



FSt1

display time when macro was last run
 
hi
this should do it.
Range("A1").Value = "Last run"
Range("A2").Value = Time ' or Now or Date
stick this line at the begining or end of the macro or anywhere you think is
good
adjust ranges to suit.

Regards
FSt1

"Josh Craig" wrote:

Is there a way I can display in a cell the time a macro was last run?

Any help is appreciated!

Josh



Jacob Skaria

display time when macro was last run
 
Why dont you write a timestamp to a cell at the end of the macro..


If this post helps click Yes
---------------
Jacob Skaria


"Josh Craig" wrote:

Is there a way I can display in a cell the time a macro was last run?

Any help is appreciated!

Josh



Jacob Skaria

display time when macro was last run
 
Sub MyMacro()
'Timestamp
Worksheets("Macro Log").Range("A1") = "MyMacro"
Worksheets("Macro Log").Range("B1") = Now()
'/Timestamp

< your code

End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Why dont you write a timestamp to a cell at the end of the macro..


If this post helps click Yes
---------------
Jacob Skaria


"Josh Craig" wrote:

Is there a way I can display in a cell the time a macro was last run?

Any help is appreciated!

Josh




All times are GMT +1. The time now is 02:52 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com