Hi,
I have written a one liner VBA code to display the date, time and weekday name on the status bar of Excel (Version used is Excel 2003).
Application.statusbar= date & " " & time & " " & weekdayname(date, vbsunday)
Something of this kind written in Worksheet activate event. (this line may contain errors though, coz I dont have the application in this system that am typing this message, to write the syntax correctly)
It's working, but I want to refresh the time automatically for every second (atleast every 30 secs, or 60 secs) in the background while causing no disturbance to the application while working, something like the Date & time feature that every windows system has on the extreme right bottom of the computer.
Is there a possible way to do this..??
I have written a one liner VBA code to display the date, time and weekday name on the status bar of Excel (Version used is Excel 2003).
Application.statusbar= date & " " & time & " " & weekdayname(date, vbsunday)
Something of this kind written in Worksheet activate event. (this line may contain errors though, coz I dont have the application in this system that am typing this message, to write the syntax correctly)
It's working, but I want to refresh the time automatically for every second (atleast every 30 secs, or 60 secs) in the background while causing no disturbance to the application while working, something like the Date & time feature that every windows system has on the extreme right bottom of the computer.
Is there a possible way to do this..??