How to get reminder in excel after each hour -
i used formula: =if(now()==time(11:00:00),"time b6","error")
seems issue. how should reminder each hour in excel.
your formula wrong. try variant:
=if(now()=time(11,0,0),"time b6","error")
you'll reminder on each 11:00:00. if need reminder on every hour, can use formula:
=if(minute(now())=0,"time b6","error")
update: if want update cells without f9 key pressing, need use vba macro. vba can force cell re-calculate every 1 minute:
private sub workbook_open() call application.ontime(now + timevalue("00:01:00"), "updateclock") end sub public sub updateclock() call sheet1.range("a1").calculate call application.ontime(now + timevalue("00:01:00"), "updateclock") end sub
updateclock procedure must in module (not in sheet or workbook)
Comments
Post a Comment