sorry for the late reply, i'm living in korea at the moment and working some 'strange' hours to say the least.
anyways, so i added the conditional formatting, so thats done. now as for the time the code in the link you gave me was
Dim SchedRecalc As Date
Sub Recalc()
Range("C3").Value = Format(Now, "dd-mmm-yy")
Range("C4").Value = Format(Time, "hh:mm:ss AM/PM")
Call SetTime
End Sub
Sub SetTime()
SchedRecalc = Now + TimeValue("00:00:01")
Application.OnTime SchedRecalc, "Recalc"
End Sub
Sub Disable()
On Error Resume Next
Application.OnTime EarliestTime:=SchedRecalc, Procedure:="Recalc", Schedule:=False
End Sub
now heres a really newb question, the part of that code that says 'range(c3) and (c4) do i need to change those to the appropriate blocks in my spreadsheet or is it unrelated? i feel pretty stupid asking that, since i think i know the answer...
the next question... with this macro, will i need to have a button to press on the sheet somewhere? (thats cool if its the case) or can i just add the code to the sheet and it will run automatically?
Bookmarks