ontime method?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to have the value in cell A1 copied to cell C1 at 700am each day. Can
Excel automate this process? Would the "ontime method" be the correct
approach for this problem? Thanks.
 
Yes. Application.OnTime would do this for you provided the file is open...

Sub Runmeat7()

Application.OnTime timevalue("07:00:00"), "MyMacro"

End Sub

Sub MyMacro()
me.range("C1").value = Me.Range.("a1").value
End Sub


Hth,
Oli
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top