A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Record time by formula



 
 
Thread Tools Display Modes
  #1  
Old April 29th, 2010, 03:57 AM posted to microsoft.public.excel.worksheet.functions
Karim
external usenet poster
 
Posts: 68
Default Record time by formula

hi,

i want to create excel sheet wherein time has to be recorded multiple time.
Now() formula does not help and i don't want to use macro.
Pls Suggest
  #2  
Old April 29th, 2010, 04:00 AM posted to microsoft.public.excel.worksheet.functions
ozgrid.com
external usenet poster
 
Posts: 328
Default Record time by formula

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest


  #3  
Old April 29th, 2010, 04:12 AM posted to microsoft.public.excel.worksheet.functions
Karim
external usenet poster
 
Posts: 68
Default Record time by formula

i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest


  #4  
Old April 29th, 2010, 04:31 AM posted to microsoft.public.excel.worksheet.functions
ozgrid.com
external usenet poster
 
Posts: 328
Default Record time by formula

What's you question? Don't be so vague...



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not
help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest



  #5  
Old April 29th, 2010, 05:53 AM posted to microsoft.public.excel.worksheet.functions
Karim
external usenet poster
 
Posts: 68
Default Record time by formula

i want to create a worksheet where multiple data has to feed and each entry
should record its entry time.

i dont want to use macro.

Pls suggest



"ozgrid.com" wrote:

What's you question? Don't be so vague...



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not
help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest


  #6  
Old April 29th, 2010, 06:01 AM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default Record time by formula

Hi Karim

You cannot record the time automatically using formulas. You will have to
use VBA- worksheet/workbook events...

--
Jacob (MVP - Excel)


"karim" wrote:

hi,

i want to create excel sheet wherein time has to be recorded multiple time.
Now() formula does not help and i don't want to use macro.
Pls Suggest

  #7  
Old April 29th, 2010, 07:23 AM posted to microsoft.public.excel.worksheet.functions
FSt1
external usenet poster
 
Posts: 2,788
Default Record time by formula

hi
there is no formula that will display the time that is not volital meaning
that it is keyed to the system clock and will update to the current time each
time the sheet calculates formulas.
the keyboard shortcut Ctrl + Shift + : will insert the current time(system
clock) into a selected cell but that is a manual process.
if that is not what you want, vb is about all that is left.

Regards
FSt1

"karim" wrote:

hi,

i want to create excel sheet wherein time has to be recorded multiple time.
Now() formula does not help and i don't want to use macro.
Pls Suggest

  #8  
Old April 29th, 2010, 08:23 AM posted to microsoft.public.excel.worksheet.functions
Tom[_55_]
external usenet poster
 
Posts: 39
Default Record time by formula

If starting time is 3:20:35pm use the formula, =TIME(15,20,35)
and custom format the cell h:mm:ss AM/PM. Excel uses military time.

"karim" wrote in message
...
i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not
help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest




  #9  
Old April 29th, 2010, 08:35 AM posted to microsoft.public.excel.worksheet.functions
Tom[_55_]
external usenet poster
 
Posts: 39
Default Record time by formula

Another way. Use =NOW() to capture the starting/ending time. Then copy that
cell and paste itself as a value to freeze it and delete the date in front.

"karim" wrote in message
...
i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not
help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest




  #10  
Old April 29th, 2010, 11:17 AM posted to microsoft.public.excel.worksheet.functions
Steve Dunn
external usenet poster
 
Posts: 192
Default Record time by formula

Another possibility if you are comfortable with Circular References:

In B1:

=IF(A1="",NOW(),B1)

Press F9 to force a re-calculation before entering data in A1, once data is
entered in A1 whatever was in B1 will stay there.



"karim" wrote in message
...
i want to record start time and end time multiple times on single worksheet
without using macro. Pls suggest any formula for same as =now() does not
help.

karim.


"ozgrid.com" wrote:

????????????????????



--
Regards
Dave Hawley
www.ozgrid.com
"karim" wrote in message
...
hi,

i want to create excel sheet wherein time has to be recorded multiple
time.
Now() formula does not help and i don't want to use macro.
Pls Suggest



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:58 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.