Hello,
I want to make a message box that says the following:
"The system took 25 seconds to process."
Where the 25 is a variable.
I have the following code already.
Sub Time()
Dim t as Double, x
t = Timer
For x = 1 to 10
Blah Blah Blah
next x
MsgBox Timer - t
End Sub
As the code stands, I...