I have an CV and would like to automatically update my age when opening. So, what formula should I insert in a MS Word field?

Something like:

{= {DATE} - {"01/01/1983"} }

link|improve this question

68% accept rate
to those who voted to close - Word field can very much be programming full of variables and if/then statements. voting to close a question like this means you'd also vote to close every single excel-formula tagged question on SO. check out the link attached and you'll see :) – Otaku Apr 27 '10 at 23:30
@Otaku - despite being one of those voting to close I agree with you to some extent. There is a grey area here between being a "power user" of these application and it being a programming question. I think we have to take each question on it's own merits. In this case I came down on the side of migration, in another case I might not. – ChrisF Apr 28 '10 at 12:43
@ChrisF: I could add "NotProgrammingRelated" tag, but... this would not be true. – serhio Apr 28 '10 at 13:05
@ChrisF: Fair enough. My rationale is that anything that requires a user to do their own conditional calculations with code is programming related, everything else is "power user". For example: Conditional Formatting in Excel is "power user" (unless Formula is chosen) as it is GUI-driven. Same in Word, for example, if you use the Fields dialog to enter a field - but if you need to programmatically manipulate the results, I'd call it programming. I know of very, very few "power users" who can code anything at all. – Otaku Apr 28 '10 at 17:52
feedback

1 Answer

up vote 1 down vote accepted

This is one of the better sites for working with Word field codes - http://www.addbalance.com/usersguide/fields.htm - and there are examples there on how to create +/- dates.

Here's how you would calculate based of a birth month of January and birth year of 1983.

{IF{DATE\@"MM"} >= 01 { = {DATE\@"YYYY"} – 1983 \#"00"} { = {DATE\@"YYYY"} – 1984 \#"00"}}

Note that in the case of the month of January, this IF statement will always be true and give you =YEAR-1983. You can use another nested IF statement to check on the day to further get more accurate.

link|improve this answer
I saw this, however not found there an answer to my question. only Today\Create\Save date are available. – serhio Apr 28 '10 at 8:39
Yeah, you have do use DATE to do this calculation. Word field codes are notoriously difficult to type in and get right as even the wrong spacing will give different results. Code you need is updated in the answer. – Otaku Apr 28 '10 at 14:45
even {= {DATE \@ "yyyy"} - 2 does not work... Syntax error... – serhio Apr 28 '10 at 16:30
1  
@serhio: you forgot the closing bracket } at the end. When you enter field codes, you can't just type in the brackets though - you have to use Ctrl+F9 to enter the brackets. – Otaku Apr 28 '10 at 17:15
Thanks! <kbd>Ctrl+F9</kbd> was useful. – serhio Apr 29 '10 at 9:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.