Written by Allen Wyatt (last updated April 1, 2019)
This tip applies to Word 97, 2000, 2002, and 2003
If you desire, you can use fields to calculate an age. For instance, the field could calculate the number of years between some base date and today's date. The following compound field will do the trick:
{ = INT({ DATE \@ "yyyy" } + { DATE \@ "M" } / 12 + { DATE \@ "d" } / 365.25 - YYYYb - Mb / 12 - Db / 365.25) }
As those who are familiar with fields know, each of the braces in this sample represents a new field. In addition, you should replace the YYYYb, Mb, and Db placeholders with the year, month, and day of month for the base date. For instance, if your birthday were 21 June 1959, then you would replace YYYYb with 1959, replace Mb with 6, and Db with 21. When you then calculate the field (by selecting it and pressing F9), it is replaced with a number representing the number of years between the base date and today.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1008) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Age Calculation with Fields.
Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!
You can create a special header and footer page numbering scheme by using nested fields. This tip shows an example of how ...
Discover MoreWord keeps track of many statistics for each of your documents. One statistic is the total number of pages in the printed ...
Discover MoreOne of the more esoteric ways to display data is with an "array," which is like a miniature inline table. This tip ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-06-25 16:54:47
v mehta
the below code for file 123.doc, with PFNAME and PLNAME being Barack Obama, gives me, 123BarackObama.doc
Public Sub UpdateKImartin()
Dim name As String
Dim source As String
Dim path As String
'extract the name from the bookmark
source = ActiveDocument.FullName
name = ActiveDocument.Bookmarks("PFNAME").Range.Text
name2 = ActiveDocument.Bookmarks("PLNAME").Range.Text
'Save the doc with the new name
ActiveDocument.SaveAs _
Left(ActiveDocument.FullName, Len(ActiveDocument.FullName) - 4) & _
name2 & "_" & name & Right(ActiveDocument.FullName, 4)
ActiveDocument.Close wdSaveChanges
Kill source
End Sub
I want BarackObama123.doc. how do i achieve this ?
2014-08-11 18:25:01
novice
thanks, it was great if you could upload a document of this form
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2023 Sharon Parq Associates, Inc.
Comments