Use a non-breaking space. E.g. if you insert the date with a macro, you
could use
Sub InsertUSFormatDate()
With Selection
.InsertDateTime DateTimeFormat:="MMMM" & Chr(160) & _
"d," & Chr(160) & "yyyy", InsertAsField:=False
End With
End Sub
or
Sub InsertUKFormatDate()
With Selection
.InsertDateTime DateTimeFormat:="d" & Chr(160) & _
"MMMM" & Chr(160) & "yyyy", InsertAsField:=False
End With
End Sub
or with a field use a switch e.g.
{ Date \@ "d MMMM yyyy" } with nonbreaking spaces (CTRL+SHIFT+Space) in the
switch.
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
Word MVP web site
http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
DeeDee wrote:
> I am using M S Windows Xp - Home Edition - 2002.
> I don't want January at the end of one line and 2009 at the beginning
> of the next. How do I keep them together.