Microsoft Word, Date Incrementing
Page 1 of 1
UserFriendly7
Moderator



Posts: 1471
Location: England
PostPosted: Wed, 14th Jan 2009 22:46    Post subject: Microsoft Word, Date Incrementing
Anyone know a solution to the following? Cool

I have one page with the current date.
On the second page I would like the date to be current date plus 1 day
the third page i would like the date plus 2 days
and so forth...

So when it's opened it'll update all the dates from the current day...


 Spoiler:
 
Back to top
UserFriendly7
Moderator



Posts: 1471
Location: England
PostPosted: Thu, 15th Jan 2009 15:32    Post subject:
Not to worry, all fixed and working! Very Happy


 Spoiler:
 
Back to top
LeoNatan
Banned



Posts: 73193
Location: Ramat Gan, Israel 🇮🇱
PostPosted: Thu, 15th Jan 2009 15:52    Post subject:
Can you please post the solution? Smile It's something nice to know how to do.
Back to top
UserFriendly7
Moderator



Posts: 1471
Location: England
PostPosted: Fri, 16th Jan 2009 00:26    Post subject:
Yeah no prob's.

I found the date calculator document: http://www.wopr.com/w3tfiles/10-249902-DateCalc.zip

Open it up and there are many examples of what you can do, find the correct one, if you highlight the example then right click, you can toggle the field to see the code. I cut n paste into my document.
The used the following macro to update the fields every time I open that document in word:

Code:
Sub AutoOpen()
   Dim aStory As Range
   Dim aField As Field
   For Each aStory In ActiveDocument.StoryRanges
      For Each aField In aStory.Fields
         aField.update
      Next aField
   Next aStory
End Sub


Hope that helps anyone, if the download link fails let me know and I can host it elsewhere. Any problems let me know e.g. I had to remove +4800 out of the third line of code that calculates the date, odd why that was there Wink


 Spoiler:
 
Back to top
Page 1 of 1 All times are GMT + 1 Hour
NFOHump.com Forum Index - Programmers Corner
Signature/Avatar nuking: none (can be changed in your profile)  


Display posts from previous:   

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB 2.0.8 © 2001, 2002 phpBB Group