Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 35
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 107
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 109
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 111
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 112
Jun
Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 35
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 107
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 109
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 111
Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EST/-5.0/no DST' instead in /home/frodr/public_html/msofficetuneup.com/wp-includes/functions.php on line 112
10
Viewing Total Editing Time Updated in Real-Time in Word 2007
Microsoft Word, Tips & Tricks Add comments
The total amount of time that a document has been edited is useful for freelancers, lawyers, consultants, and other professionals who bill for their time. Knowing how long you have spent working on a document enables you to provide a more accurate accounting of your time.
If you have a time budget that you’re trying to stick to, you may find yourself constantly checking the document’s Properties dialog box to view the Total editing time value. Rather than wasting time performing that chore, add the EditTime field to your document. Word’s EditTime field displays the total time, in minutes, that the document has had the system focus (and, presumably, has been edited) since the time at which the document was created. This is the same as the Total editing time value displayed in the Statistics tab of the document’s Properties dialog box.
NOTE
To display the Properties dialog box for the current document, choose Developer, Document Panel and click OK (or choose Office, Prepare, Properties). Pull down the Document Properties list and then click Advanced Properties.
Follow these steps to add some code that displays the total editing time with the word minÂutes added for clarity:
- Type some descriptive text (such as Total Editing Time:).
- Press Ctrl+F9 to start a new Word field (signified by the { and } braces).
- Between the field braces, type the following: EDITTIME \# “0 minutes” \* mergeformat
- Press F9 to complete and update the field.
Now all you have to do is update the field to check the total editing time.
If even that sounds like a hassle, you can add a relatively simple macro to the document that will update the EditTime field in real-time. Open the Visual Basic Editor and insert a module in the document’s project. Add the code in Listing 1 to the module.
Listing 1 Updating the EditTime Field in Real-Time
Public Sub UpdateEditTime()
Dim f As Field
For Each f In ThisDocument.Fields
If f.Type = wdFieldEditTime Then
f.Update
End If
Next ‘f
Application.OnTime Now + TimeValue(”00:01:00″), “UpdateEditTime”
End Sub
This procedure runs through all the fields in the document looking for one where the Type property is wdFieldEditTime, which corresponds to the EditTime field. When the property is found, the Update method refreshes the field. The key to the real-time updating is the Application.OnTime statement, which sets up the UpdateEditTime procedure to run again in one minute. Note that you’ll probably need to adjust the project name (”Chapter03″) and the module name (”Chapter3″) to match the name of your project and module.
TIP
To constantly monitor the EditTime field as it’s updated in real-time, you can place the field at the top or bottom of the document and then split the window (choose View, Split), so that the field remains visible in one pane. If that’s not convenient, you can display the latest EditTime result in the status bar. In Listing 3.10, insert the following statement after the f.Update method:
Application.StatusBar = f.Result
The Field object’s Result property returns the current result of the specified field.
NOTE
If you’re a professional writer or editor, you may be more concerned with the number of words in your documents.This value is available in the document’s Properties dialog box,in the Statistics tab. However, you can also track this value outside of the dialog box by using a field. Insert the NumWordsfield and use the macro techniques in this section to update the field in real-time.
Technorati Tags: viewing total editing time word 2007
Popularity: 4% [?]








January 29th, 2009 at 2:21 am
Coffee is spelled with two f’s…
August 7th, 2009 at 1:13 am
Question is how to create a spreadsheet showing each doc and total edit time. Then they could be sorted by client and totaled.
Directory Listing software will output the directory list (with some choice of columns) in CSV format. BUT I have never found a way to include the total edit time in the output. NOW THAT WOULD BE WORTH MORE THAN ONE CUPPA
September 10th, 2009 at 4:34 am
In Word 2003, you could view the edit time for multiple documnets at a time by selecting Total Edit Time in the view / details.
can you do that in Word 2007, or is that feature gone?
It seems to be no longer an option you can select.