how to make reminder in excel .

deaa_6

New Member
Joined
Jan 20, 2011
Messages
19
I have excel file Use it as a reminder of the daily work ...

What a way to make a timer in Excel
If time is in the computer match with the time in the cell change color.

Example:

Computer time 5:15
I have work at 06:00 and I've written this time in a cell, Excel
If computer clock match with working time Automatically change the color of the cell
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
roughly and quick way...

running time. Enter both the code in standard module and run timer..
Dim NextTick As Date
Sub timer()
Range("A1").Value = CDbl(Time)
NextTick = Now + TimeValue("00:00:01")
Application.OnTime NextTick, "timer"
alertme
End Sub

then for example you can enter time in range "b2" when you want the pop up...

another try..
sub alertme
if range("B1").value < range("A1").value then
msgbox "Alert...times up"
On Error Resume Next
Application.OnTime NextTick, "timer", , False

end if
end sub

How I can use it ... can you help me with example sheet
 
Upvote 0

Forum statistics

Threads
1,215,453
Messages
6,124,930
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top