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

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
You can do this with conditional formatting on the cell containing the time.
Such that if K5 is the cell with the time, a conditional format formula would look like:
Code:
=TIME(HOUR(NOW()),MINUTE(NOW()),SECOND(NOW()))>=K5
This would reset every day however.
You would need to utilize a full date/time to make it persistent, which goes to a different formula.
 
Upvote 0
You can do this with conditional formatting on the cell containing the time.
Such that if K5 is the cell with the time, a conditional format formula would look like:
Code:
=TIME(HOUR(NOW()),MINUTE(NOW()),SECOND(NOW()))>=K5
This would reset every day however.
You would need to utilize a full date/time to make it persistent, which goes to a different formula.


i do that & cell give me 0
 
Upvote 0
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
 
Last edited:
Upvote 0
As i check your sheet it does not give much explaination...:)
Not sure what to do..:confused:
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,215
Members
448,554
Latest member
Gleisner2

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