Computing.Net > Forums > Office Software > winword - date question

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

winword - date question

Reply to Message Icon

Name: fight
Date: June 15, 2006 at 01:29:19 Pacific
OS: windows xp
CPU/Ram: p4/512
Product: intel
Comment:

I am inputting a "date" field in a word document but i need it to set it to tomorrow rather than today during editting. Apart from change the Time and Date in Control Panel, is there a way i could do this so that it will update the date automatically to tomorrow's date



Sponsored Link
Ads by Google

Response Number 1
Name: rhawk7938
Date: June 17, 2006 at 10:58:37 Pacific
Reply:

Click tools, macro, visual basic editor. In the left pane double click ThisDocument, and paste this code in the right pane. Save and close the editor. Save and close your document. When you open this document it will insert the date plus 1 day.

Private Sub Document_Open()

Dim FirstDate As Date
Dim IntervalType As String
Dim Number As Integer

IntervalType = "d"
FirstDate = Date

Number = 1

Selection = DateAdd(IntervalType, Number, FirstDate)

End Sub


0

Response Number 2
Name: fight
Date: June 20, 2006 at 23:33:18 Pacific
Reply:

thanks rhawk,

this is what i wanted ..but could u tell me how to change the date format to "Wednesday, 21 July, 2006" and also i need to locate in the middel of the page
many thanks


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More


network excel file(Office... VBA Assistance for Excel



Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: winword - date question

Excel Date Question www.computing.net/answers/office/excel-date-question/2892.html

Outlook 2002 due date question www.computing.net/answers/office/outlook-2002-due-date-question/2944.html

Date format in Excel www.computing.net/answers/office/date-format-in-excel/4728.html