Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 02-08-2015, 10:28 PM
hydrogyny hydrogyny is offline Time Stamps automatically changed to same time! Mac OS X Time Stamps automatically changed to same time! Office for Mac 2011
Novice
Time Stamps automatically changed to same time!
 
Join Date: Feb 2015
Posts: 2
hydrogyny is on a distinguished road
Default Time Stamps automatically changed to same time!

So, I am a field logger for a television show which means I have to use the time code option in microsoft word every few seconds so that i have an accurate log of when every action and bit if dialogue happened.



I was able to find out how to insert the current time by using shift + command + t and it will enter a unique and accurate time stamp.

So, I'll spend 13 hours logging an entire day's work, saving periodically and end up with an accurate log for the editors to use later.

but for some f'ing reason Word will randomly change ALL of the times to the same time! The entire page will be just fine when I save... but sometimes randomly I will come back to the document and it will have changed all of the unique timestamps to ONE time! It will just decide that i wanted 3,000 times to all read 14:02:02 throughout the entire document!

Sometimes I will have saved and closed the document and when I reopen it, the time codes will have all changed to one time. Sometimes it will even do it without closing the document. There doesn't seem to be any rhyme or reason for this and it's completely screwing me over.

so instead of...

12:59:03 | JG: Hello!
12:59:15 | JG: Today we are dealing with...
13:01:04 | B: Tell me how that made you feel?
13:02:08 | JG: Well, gee golly.
13:04:04 | B: What I think...

will turn into...

21:23:20 | JG: Hello!
21:23:20 | JG: Today we are dealing with...
21:23:20 | B: Tell me how that made you feel?
21:23:20 | JG: Well, gee golly.
21:23:20 | B: What I think...


for 75 pages! As far as I can tell there's no UNDO function, every single saved copy (backup files) will all read the same! Even digging deep into the auto saves, they will have all changed to this as well.

I've never had this problem on any other computer... why is this happening? it's driving me to the end of my rope and I can't even find any searches to figure out why it's happening and how to fix it.

It's basically going to get me fired because my logs have become useless.

Please help me :{

Last edited by Charles Kenyon; 02-09-2015 at 08:47 PM. Reason: Mark as solved
Reply With Quote
  #2  
Old 02-08-2015, 10:40 PM
gmayor's Avatar
gmayor gmayor is offline Time Stamps automatically changed to same time! Windows 7 64bit Time Stamps automatically changed to same time! Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,106
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

It seems you have used a time field, which displays the current time from the system clock and the field is not locked. It would be better not to use a time field but to insert the current time as text and then it can't happen. You could probably do this witha macro, but I am not sure how compatible the Mac is. The following would work on a PC, and may work on a Mac.

There will be no record of the intended time in the document, so there's not a lot that you can do about it.

Code:
Sub InsertTime()
Dim orng As Range
    Set orng = Selection.Range
    orng.Text = Format(Time, "HH:MM:SS |")
    orng.Collapse 0
    orng.Select
lbl_Exit:
    Exit Sub
End Sub
See http://www.gmayor.com/installing_macro.htm
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
  #3  
Old 02-09-2015, 12:53 PM
hydrogyny hydrogyny is offline Time Stamps automatically changed to same time! Mac OS X Time Stamps automatically changed to same time! Office for Mac 2011
Novice
Time Stamps automatically changed to same time!
 
Join Date: Feb 2015
Posts: 2
hydrogyny is on a distinguished road
Default

So, basically you're saying (what i figured) is that there's no way to reference what all those previous times were, so those are gone for good? Sigh, oh well.

But from now on... using this Macro (thank you!) they should remain the same and not change?

Do you know why the Macro option would remain the same after closing / opening, but the way I was doing it before wouldn't? Just curious about the reasoning behind it... but as far as I can tell what you posted worked, so thanks a bunch!
Reply With Quote
  #4  
Old 02-09-2015, 05:35 PM
Guessed's Avatar
Guessed Guessed is offline Time Stamps automatically changed to same time! Windows 7 32bit Time Stamps automatically changed to same time! Office 2010 32bit
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,977
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

The macro is putting 'typed text' into the document so the text won't change automatically. You were putting in fields which showed the time when the field was last updated. This was fine until the fields were updated. It also would have remained fine if the fields were either locked or broken by selecting them and pressing the relevant keyboard shortcuts. However at some stage the fields got updated so they all showed the same time. There are Word options that can be turned off/on that automatically update fields when opening or printing a document - I suspect this is what happened to your document if you didn't select the fields and update them yourself.

It sounds like your workflow is more complicated than it needs to be. In order to minimise keystrokes you should associate the macro with a keyboard command. For instance, I would use the following modification to Graham's code and associate it with Ctrl-Alt-Enter so I didn't need to type the paragraph mark as well.
Code:
Sub InsertReturnTime()
  Dim orng As Range
  Set orng = Selection.Range
  orng.Text = vbCr & Format(Time, "HH:MM:SS | ")
  orng.Collapse 0
  orng.Select
lbl_Exit:
  Exit Sub
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
  #5  
Old 02-09-2015, 08:57 PM
Charles Kenyon Charles Kenyon is offline Time Stamps automatically changed to same time! Windows 7 64bit Time Stamps automatically changed to same time! Office 2010 32bit
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,140
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Quote:
Originally Posted by hydrogyny View Post

Do you know why the Macro option would remain the same after closing / opening, but the way I was doing it before wouldn't? Just curious about the reasoning behind it... but as far as I can tell what you posted worked, so thanks a bunch!
The method you were using was the insertion of a TIME field. This is really a variant of the DATE field which is good for showing the date or time that is NOW but not good for much else.
Using Date Fields in Microsoft Word
There are a number of fields that handle date and time. They can be very useful, but none would give you a time stamp that would stay unchanged when you insert a number of them at different times.

A TIME or DATE field can be locked so that it will not change, but this is an additional step. Such a field can still be unlocked, in which case it will lose its value. It can also be unlinked. That would change it to plain text.

The macro method is superior for your purposes.
Reply With Quote
Reply

Tags
time, timecodes, timestamps



Similar Threads
Thread Thread Starter Forum Replies Last Post
Time allotted minus time used with result in hour and minute esther6086 Excel 2 04-29-2014 05:03 PM
Time Stamps automatically changed to same time! I want Time to be automatically sequenced anienham Word 4 06-14-2012 04:08 PM
IE Object: Run-time problem (the link is not clicked in run-time but not in step-in tinfanide Excel Programming 1 03-04-2012 12:05 AM
Time stamps and postponing messages. thundermocos Outlook 0 10-29-2006 06:04 AM
Daylight Saving Time Changed all appointments nemeth Outlook 0 04-10-2006 01:33 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:03 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft