Pick time from cell

  • Thread starter Thread starter Kash
  • Start date Start date
K

Kash

I have the below code.. can make the time pick from a cell?
Sheets("Set").Range("A8")

Application.OnTime TimeValue("22:50:00"), "cls"
 
Try it this way...

Application.OnTime TimeValue(Sheets("Set").Range("A8")), "cls"
 
Back
Top