-
WSPaul Lautman
AskWoody LoungerThanks Hans, I’ll try that out soon and report back.
-
WSPaul Lautman
AskWoody LoungerMy document currently has only 1 line in it. The problem occurs regardless of what document I am in. If I try to retype the preface text in Modify Style->Numbering then after typing a few characters word just hangs. It does not go not responding, but it does nothing else. I can adjust the format of the particular heading and then “Update to match” and then all is fine.
-
WSPaul Lautman
AskWoody LoungerMy document currently has only 1 line in it. The problem occurs regardless of what document I am in. If I try to retype the preface text in Modify Style->Numbering then after typing a few characters word just hangs. It does not go not responding, but it does nothing else. I can adjust the format of the particular heading and then “Update to match” and then all is fine.
-
WSPaul Lautman
AskWoody LoungerThanks Hans, I knew I’d managed to get it looking almost good at one point, I must have chosed outline numbering then.
What is the difference between Standard and Outline numbering? I thought it was just that there was more than one level in an outline list.
Sure like to know why I get word hanging everytime I try to modify the number prefix directly in the style. The only think I can do after that is bring up the task manager and end the task.
As I say, changing the prefix “in situ” and then updating a style to match the selection works fine.
-
WSPaul Lautman
AskWoody LoungerAlso, I still seem to have a gap, even after following your instructions.
I have attached the file
-
WSPaul Lautman
AskWoody LoungerAlso, I still seem to have a gap, even after following your instructions.
I have attached the file
-
WSPaul Lautman
AskWoody LoungerI have had trouble updating the styles with “Session”. Whenever I do, as I start typing session, I get a message telling me that the document is too large and then word just hangs.
The only way that I have managed to add the Session is to format the text and then choose “Update to match selection”
-
WSPaul Lautman
AskWoody LoungerI have had trouble updating the styles with “Session”. Whenever I do, as I start typing session, I get a message telling me that the document is too large and then word just hangs.
The only way that I have managed to add the Session is to format the text and then choose “Update to match selection”
-
WSPaul Lautman
AskWoody LoungerCheers Rory,
the description on the problem at the link that you sent was not exactly what I was seeing, but it sure cured the problem. -
WSPaul Lautman
AskWoody LoungerCheers Rory,
the description on the problem at the link that you sent was not exactly what I was seeing, but it sure cured the problem. -
WSPaul Lautman
AskWoody LoungerThat isn’t listed in my Region Settings. Mine is set to dd/MM/yyyy
As I just added to my original post, I only see the problem if more than one cell is selected when I run the macro.
I have attached pd2.xls which shows the results of running propagate_data1 on a single cell (C3) and on multiple cells (C10 and C11 selected.
It also has a picture of my regional settings dialog.
I tried setting my date settings to dd-MM-yyyy which seems to be the nearest that I can get to your dd-mm-yyyy one, but I still see the problem if more than one cell is selected.
-
WSPaul Lautman
AskWoody LoungerWell, this had me really confused.
I hope someone can help with a good fix.
I have a macro called Propagate_Data. It allows me to copy down summarised headings against all rows.
The original version was:
Sub propagate_data()
With Selection
.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = “=R[-1]C”
.Copy
.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End With
Application.CutCopyMode = False
End SubBut I recently started using a newer version:
Sub propagate_data()
With Selection
.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = “=R[-1]C”
.Value = .Value
End With
End SubEverything was going swimmingly, until I I just tried to use the new version against a list of dates.
The dates in UK format were 01/05/2004, 01/06/2004, 01/07/2004, 01/08/2004 and were formatted on the sheet as May-04, Jun-04, …
Now, when I ran the latter version of my propagate_data macro, all the dates were displayed as Jan-04.
When I examined the actual contents of the cells I am seeing 05/01/2004, 06/01/2004, …
The former version of propagate_data works fine, but the latter version, using .value = .value seems to assume that it is either reading from or writing to the US data format.
Now, whilst I can in this case simply change back to using the older version of propagate_data, there are other macros that I (and I’m sure others) have that use .value = .value.
So, any ideas as to how to persuade Excel to consistently use the correct date format?
I have attached a sample file with 2 macros to compare the results.
Just select one of the 2 columns and run one of the macros, then select the other column and run the second one.
I suspect that only non-US folks will be able to see the problem descrivbed above.
Any assistance would be appreciated.
Futher information found: This only happens if there is more than one cell selected when “.value = .value” is run. If only 1 cell is selected, then the date format is converted correctly, if more than one is selected, then the error appears.
-
WSPaul Lautman
AskWoody LoungerWell, this had me really confused.
I hope someone can help with a good fix.
I have a macro called Propagate_Data. It allows me to copy down summarised headings against all rows.
The original version was:
Sub propagate_data()
With Selection
.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = “=R[-1]C”
.Copy
.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End With
Application.CutCopyMode = False
End SubBut I recently started using a newer version:
Sub propagate_data()
With Selection
.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = “=R[-1]C”
.Value = .Value
End With
End SubEverything was going swimmingly, until I I just tried to use the new version against a list of dates.
The dates in UK format were 01/05/2004, 01/06/2004, 01/07/2004, 01/08/2004 and were formatted on the sheet as May-04, Jun-04, …
Now, when I ran the latter version of my propagate_data macro, all the dates were displayed as Jan-04.
When I examined the actual contents of the cells I am seeing 05/01/2004, 06/01/2004, …
The former version of propagate_data works fine, but the latter version, using .value = .value seems to assume that it is either reading from or writing to the US data format.
Now, whilst I can in this case simply change back to using the older version of propagate_data, there are other macros that I (and I’m sure others) have that use .value = .value.
So, any ideas as to how to persuade Excel to consistently use the correct date format?
I have attached a sample file with 2 macros to compare the results.
Just select one of the 2 columns and run one of the macros, then select the other column and run the second one.
I suspect that only non-US folks will be able to see the problem descrivbed above.
Any assistance would be appreciated.
Futher information found: This only happens if there is more than one cell selected when “.value = .value” is run. If only 1 cell is selected, then the date format is converted correctly, if more than one is selected, then the error appears.
-
WSPaul Lautman
AskWoody LoungerThanks Hans and Rudi.
And there is of course the {eq …} field trick.
I just thought that I recalled an easy way to select whether the line went the whole width or just the width of the actual characters in the heading paragraph.
It was obviously a false memory.
Thanks for helping.
-
WSPaul Lautman
AskWoody LoungerThanks Hans and Rudi.
And there is of course the {eq …} field trick.
I just thought that I recalled an easy way to select whether the line went the whole width or just the width of the actual characters in the heading paragraph.
It was obviously a false memory.
Thanks for helping.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Teams lost all my Skype contacts (Awaiting moderation)
by
Lucy
2 hours, 17 minutes ago -
0Patch, where to begin
by
cassel23
6 hours, 12 minutes ago -
CFPB Quietly Kills Rule to Shield Americans From Data Brokers
by
Alex5723
9 hours, 12 minutes ago -
89 million Steam account details just got leaked,
by
Alex5723
17 hours, 37 minutes ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
17 hours, 45 minutes ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
8 hours, 43 minutes ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
11 hours, 7 minutes ago -
Installer program can’t read my registry
by
Peobody
2 hours, 5 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
6 hours, 30 minutes ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
13 hours, 51 minutes ago -
False error message from eMClient
by
WSSebastian42
1 day, 4 hours ago -
Awoke to a rebooted Mac (crashed?)
by
rebop2020
1 day, 13 hours ago -
Office 2021 Perpetual for Mac
by
rebop2020
1 day, 15 hours ago -
AutoSave is for Microsoft, not for you
by
Will Fastie
11 hours, 46 minutes ago -
Difface : Reconstruction of 3D Human Facial Images from DNA Sequence
by
Alex5723
1 day, 18 hours ago -
Seven things we learned from WhatsApp vs. NSO Group spyware lawsuit
by
Alex5723
19 hours, 43 minutes ago -
Outdated Laptop
by
jdamkeene
2 days ago -
Updating Keepass2Android
by
CBFPD-Chief115
2 days, 5 hours ago -
Another big Microsoft layoff
by
Charlie
2 days, 5 hours ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
2 hours, 35 minutes ago -
May 2025 updates are out
by
Susan Bradley
4 hours, 28 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
2 days, 11 hours ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
2 days, 11 hours ago -
Drivers suggested via Windows Update
by
Tex265
2 days, 11 hours ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
7 hours, 11 minutes ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
2 days, 18 hours ago -
Apple releases 18.5
by
Susan Bradley
2 days, 12 hours ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
2 days, 19 hours ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
2 days, 20 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
1 day, 4 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.