ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   how do i add time to see how long my macro takes to run (https://www.excelbanter.com/excel-programming/367321-how-do-i-add-time-see-how-long-my-macro-takes-run.html)

ernestgoh[_6_]

how do i add time to see how long my macro takes to run
 

hi, my macro takes a few hours to run. i would like to add a function
inside to measure the time taken. can anyone share how it's done?
thanks.


--
ernestgoh
------------------------------------------------------------------------
ernestgoh's Profile: http://www.excelforum.com/member.php...o&userid=24870
View this thread: http://www.excelforum.com/showthread...hreadid=561815


excelent

how do i add time to see how long my macro takes to run
 
try

Sub test()
x = Now()
'
' ur kode
'
MsgBox ("Minute :") & Minute(Now() - x) & " Second :" & Second(Now() - x)
End Sub




"ernestgoh" skrev:


hi, my macro takes a few hours to run. i would like to add a function
inside to measure the time taken. can anyone share how it's done?
thanks.


--
ernestgoh
------------------------------------------------------------------------
ernestgoh's Profile: http://www.excelforum.com/member.php...o&userid=24870
View this thread: http://www.excelforum.com/showthread...hreadid=561815



FSt1

how do i add time to see how long my macro takes to run
 
hi,
there are a lot of ways to do this. here's one...

Range("A1").Value = Time
'YourMacro runs here
Range("A2").Value = Time
Range("A3").FormulaR1C1 = "=SUM(R[-1]C-R[-2]C)"
Range("a1:a3").Select
Selection.NumberFormat = "h:mm:ss"

here's another

Dim time1
Dim time2
Dim time3
time1 = Time
'YourMacro runs here
time2 = Time
time3 = time2 - time1
MsgBox time3

regards
FSt1

"ernestgoh" wrote:


hi, my macro takes a few hours to run. i would like to add a function
inside to measure the time taken. can anyone share how it's done?
thanks.


--
ernestgoh
------------------------------------------------------------------------
ernestgoh's Profile: http://www.excelforum.com/member.php...o&userid=24870
View this thread: http://www.excelforum.com/showthread...hreadid=561815




All times are GMT +1. The time now is 08:23 PM.

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