Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 11-04-2016, 11:40 AM
otuatail otuatail is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2007
Competent Performer
Last saved date in a word (2007) document
 
Join Date: Jun 2012
Posts: 245
otuatail is on a distinguished road
Default Last saved date in a word (2007) document

Insert Quick parts -> Field

Date and time from categories drop down list

Pick SaveDate

Result

{SAVEDATE Y* MERGEFORMAT}

Doesn't look like a readable date.
Reply With Quote
  #2  
Old 11-04-2016, 12:52 PM
macropod's Avatar
macropod macropod is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Your field code doesn't have a valid syntax. Delete:
Y* MERGEFORMAT
and replace it with, for example, any of:
• \@ "dddd, d MMMM yyyy";
• \@ "ddd, d MMMM yyyy";
• \@ "d MMMM yyyy";
• \@ "d MMM yyyy";
• \@ "dd/MMM/yyyy";
• \@ "d-MM-yy".

Note: You can swap the d, M, y expressions around, but you must use uppercase 'M's for months - lowercase 'm's are for minutes.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #3  
Old 11-04-2016, 02:06 PM
otuatail otuatail is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2007
Competent Performer
Last saved date in a word (2007) document
 
Join Date: Jun 2012
Posts: 245
otuatail is on a distinguished road
Default

Can't the date be shown as a normal date? In Excel the date can be modified.

It displays Tuesday, 06, December, 2016

But to change it you go into format date -> custom
dddd, dd, mmmm, yyyy
Reply With Quote
  #4  
Old 11-04-2016, 02:19 PM
macropod's Avatar
macropod macropod is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

In Word, the format of any field that outputs a date is controlled by formatting switches. In Excel, it's controlled by cell formats. Either application can display a date in whatever format you want; you just have to do it the way the application requires.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #5  
Old 11-05-2016, 02:10 AM
Charles Kenyon Charles Kenyon is online now Last saved date in a word (2007) document Windows 8 Last saved date in a word (2007) document Office 2013
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,532
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Quote:
Originally Posted by otuatail View Post
Insert Quick parts -> Field

Date and time from categories drop down list

Pick SaveDate

Result

{SAVEDATE Y* MERGEFORMAT}

Doesn't look like a readable date.
Press Alt+F9 to hide field codes and display field results.
Reply With Quote
  #6  
Old 11-05-2016, 06:00 AM
otuatail otuatail is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2007
Competent Performer
Last saved date in a word (2007) document
 
Join Date: Jun 2012
Posts: 245
otuatail is on a distinguished road
Default

I used to have page numbers at the bottom of my document. I tried to add a file name to it. I ended up with this crap. I had to go through a 35 page document with someone over the phone using the same version of office. He has ACTUAL page numbers. I have spent 2 hours on the shit. And I have blank pages due to re-formatting.

Why has this automaticaly changed to
{ SAVEDATE \@ "dd MM yyyy HH:mm" \* MERGEFORMAT } { PAGE \* MERGEFORMAT }

I have never hit ALT+F( in my life
Reply With Quote
  #7  
Old 11-05-2016, 01:10 PM
macropod's Avatar
macropod macropod is offline Last saved date in a word (2007) document Windows 7 64bit Last saved date in a word (2007) document Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by otuatail View Post
I used to have page numbers at the bottom of my document. I tried to add a file name to it. I ended up with this crap.
Adding a filename cannot produce a field that looks like
{SAVEDATE Y* MERGEFORMAT}
Neither can adding a SAVEDATE field. Adding a FILENAME field could give you a result like:
{FILENAME \* MERGEFORMAT}
Quote:
Originally Posted by otuatail View Post
I had to go through a 35 page document with someone over the phone using the same version of office. He has ACTUAL page numbers. I have spent 2 hours on the shit.
Had you actually taken the trouble to accurately set out what the problem was, this could all have been resolved much earlier. For example, if in post # you had said you inserted a SAVEDATE field and it displayed as:
{SAVEDATE \* MERGEFORMAT}
we might have understood that it was a field code display issue, not a field switch issue.
Quote:
Originally Posted by otuatail View Post
And I have blank pages due to re-formatting.
Adding SAVEDATE, FILENAME and/or PAGE fields cannot of itself cause any reformatting, let alone blank pages.
Quote:
Originally Posted by otuatail View Post
Why has this automaticaly changed to
{ SAVEDATE \@ "dd MM yyyy HH:mm" \* MERGEFORMAT } { PAGE \* MERGEFORMAT }

I have never hit ALT+F( in my life
You or someone else using your computer had either: pressed Alt-F9; or gone to File|Options|Advanced>Show Document content and checked the 'Show field codes instead of their values' option. Checking/unchecking that option does the same as pressing Alt-F9.

A little less intemperance on your part, mixed with a healthy dose of correct problem description would go a long way - as would taking a modicum of time to learn to use Word properly.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #8  
Old 11-05-2016, 07:31 AM
Charles Kenyon Charles Kenyon is online now Last saved date in a word (2007) document Windows 8 Last saved date in a word (2007) document Office 2013
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,532
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

I can better answer "Why is the sky blue?" Did it fix your problem?
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Add days to Saved date in Word gresziu Word 8 09-21-2016 08:57 AM
Last saved date in a word (2007) document Cannot find my word document - saved to usb mssodium1219 Word 3 04-01-2015 04:24 AM
Last saved date in a word (2007) document Cannot open saved Word document otherlunds Word 1 09-01-2014 05:41 AM
Last saved date in a word (2007) document Inserting the date a spreadsheet was saved into another document Sammie0Sue Office 1 05-15-2014 01:14 AM
How to identify whether Word 2007 was used to create a document saved as Word 2003 noviceatwork Word 0 03-08-2012 06:40 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 01:07 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft