-
WSjpeterson72
AskWoody LoungerNever mind. should have spent a little more time in Google.
-
WSjpeterson72
AskWoody LoungerIt crashes on ANY file that she and I have attempted to custom sort–even on a new file with just a few numbers added to do a ‘test’ sort.
I have already uninstalled and reinstalled Office 2010.
By ‘crashes’, I mean it locks up and won’t do anything–although a few times I’ve waited long enough for it to eventually react to a mouse click or something, then locks up again for a long time, etc.I’ll try the older file format option next time I’m back at the school.
-
WSjpeterson72
AskWoody LoungerThanks–that’s just what I need, and I never would have found that on my own. I’ll have all my students modify their Normal.dot and get rid of a lot of confusion.
-
WSjpeterson72
AskWoody LoungerWell, it appeared as though that version wasn’t working, either. Every third time I ran it, it would condense the type, but the first two times would do nothing. Then it struck me that maybe it WAS working, but the amount was too small to visualize. I zoomed way in on the text, and then it would show movement on every click. If I would have bothered to open up the Font window and look at the spacing settings, I would have seen that it WAS increasing the condensing of the font by .25 pts each time it was clicked.
So, the old version was working all along, but thanks for giving me the new code. Maybe I can learn a few things from it. Thanks a lot.
-
WSjpeterson72
AskWoody LoungerPrivate Declare Function GetAsyncKeyState Lib “User32” (ByVal nVirtKey As Long) As Integer
Private Declare Function GetKeyState Lib “User32” (ByVal nVirtKey As Long) As Long
==========================Those 2 lines are at the top of my macro list.
Yes, these macros are old. Some (maybe most) of my big time-savers go back to the late 90s. I’ve got 4 or 5 that are very handy that I use to show my computer class how to create macros and customize the toolbar (or ribbon). They all still work except for this little glitch with the shift key on this kerning macro, and one that deals with line spacing that doesn’t work at all.
We just switched from Office 2003 to 2010 this fall. These same macros wouldn’t work on 2003, either.
I’m not a programmer. I’ve been able to study the ones that people have done for me and been able to modify them or create some simple new ones, but I could never make anything like this from scratch with VBA.
-
WSjpeterson72
AskWoody LoungerI thought I had posted that question earlier, (wouldn’t be surprised if I did it in previous years as well, because each year I seem to run in to the same problem) but when I did a search for posts under my username, I only got a couple of posts as a result–neither one of which was about these graphs. I’ve been posting here for quite a few years, evidently I didn’t have something set right in my search.
In any case, the one thread that mentioned ungrouping the chart seems to do the trick almost as well as what I was (maybe falsely) remembering doing years ago. Maybe I’m even remembering doing this from my Harvard Graphics days–but that goes back about 20 years.
Thanks
-
WSjpeterson72
AskWoody LoungerThanks, that works just as I wanted it to–for the text fields. But I also have check boxes and drop-down lists. Is there a way to make these work in the same way?
-
WSjpeterson72
AskWoody LoungerI didn’t see your reply until after my ‘chart class’ was over for the day. I had them load your original example in and then told them to see if they could replicate it from scratch in PowerPoint. Wth everyone working on it, we’ve pretty much got it figured out to get it exactly the way I want it. Thanks for your help!!
-
WSjpeterson72
AskWoody LoungerI still haven’t found the time to look over this in much detail, so I’m still having some problems. When you first set up the chart, which chart type should I select?
-
WSjpeterson72
AskWoody LoungerI don’t change an entire document, it’s usually just titles or headings that I change. On the old verson, it would only change what was highlghted.
Odd thing, though–my ‘main’ computer at school and my computer at home still will not run my old macro correctly, but it WILL run yours. I went to a couple of other computers in my classroom and those ran the old macro just fine–even though they are running the Word 2003. My 2 computers are running the Student and Teacher Edition 2003–could that be making a difference?
-
WSjpeterson72
AskWoody LoungerI’ve tried it on 2 different computers with Word 2003 and it didnt work. I went to the school library and started up an older computer that still have Word 97 on it and it worked fine. Here is the code: (I have 6 different Expert Fonts)
Dim TF$
Dim x$
Dim tf_
ReDim ReplaceFont__$(6)
ReDim FindFont__$(6)
TF$ = WordBasic.[InputBox$](“1. TNR 2. Baskerville 3. Bell 4. Garamond 5. Janson 6. Imprint “, ” Expert Font To Use “)
x$ = WordBasic.[Left$](TF$, 1)
TF$ = x$
If TF$ = “1” Then tf_ = 1
If TF$ = “2” Then tf_ = 2
If TF$ = “3” Then tf_ = 3
If TF$ = “4” Then tf_ = 4
If TF$ = “5” Then tf_ = 5
If TF$ = “6” Then tf_ = 6
If tf_ 1 And tf_ 2 And tf_ 3 And tf_ 4 And tf_ 5 And tf_ 6 Then tf_ = 1
ReplaceFont__$(1) = “Times NR Expert MT”
ReplaceFont__$(2) = “Bskvill Exp MT”
ReplaceFont__$(3) = “Bell Expert MT”
ReplaceFont__$(4) = “Garamond Expert MT”
ReplaceFont__$(5) = “Janson Expert MT”
ReplaceFont__$(6) = “Imprint Expert MT”FindFont__$(1) = “Times New Roman”
FindFont__$(2) = “Baskerville MT”
FindFont__$(3) = “Bell MT”
FindFont__$(4) = “Garamond MT”
FindFont__$(5) = “Janson MT”
FindFont__$(6) = “Imprint MT”WordBasic.EditFindFont Points:=””, Underline:=-1, Color:=-1, StrikeThrough:=-1, Superscript:=-1, Subscript:=-1, Hidden:=-1, SmallCaps:=-1, AllCaps:=-1, Spacing:=””, Position:=””, Kerning:=-1, KerningMin:=””, Tab:=”0″, Font:=FindFont__$(tf_), Bold:=0, Italic:=0
WordBasic.EditReplaceFont Points:=””, Underline:=-1, Color:=-1, StrikeThrough:=-1, Superscript:=-1, Subscript:=-1, Hidden:=-1, SmallCaps:=-1, AllCaps:=-1, Spacing:=””, Position:=””, Kerning:=-1, KerningMin:=””, Tab:=”0″, Font:=ReplaceFont__$(tf_), Bold:=0, Italic:=0
WordBasic.EditReplace Find:=”[a-z,0-9]”, Replace:=”^&”, Direction:=0, MatchCase:=1, WholeWord:=0, PatternMatch:=1, SoundsLike:=0, ReplaceAll:=1, Format:=1, Wrap:=0 -
WSjpeterson72
AskWoody Loungeryes, thanks! I don’t remember having the negative values in the axis, but I haven’t checked it out enough yet to see how to change it. I also see now where to set the secondary axis–I wasn’t finding that before. Thanks again. (I hope this won’t be too complicated for my students to understand!!)
-
WSjpeterson72
AskWoody LoungerI’m still not finding what I need, but it’s not all that important, anyway. I looked back through the last 12 years of my powerpoint files and didn’t find an example of it, so maybe I’m having faulty memory about doing this in powerpoint. I know that I first did it using Harvard Graphics, but I switched to powerpoint long ago, and it seems to me that I had re-created it in powerpoint, but maybe not. Thanks for your help
-
WSjpeterson72
AskWoody Loungerthanks! that solved the problem.
-
WSjpeterson72
AskWoody LoungerWhen I go to the Custom Animatio tab, the Group Chart dropdown has only one option–‘As One Object’. I can’t see where I am supposed to select one set of columns at a time.
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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
-
inetpub : Microsoft’s patch for CVE-2025–21204 introduces vulnerability
by
Alex5723
1 hour, 53 minutes ago -
Windows 10 finally gets fix
by
Susan Bradley
10 hours, 46 minutes ago -
AMD Ryzen™ Chipset Driver Release Notes 7.04.09.545
by
Alex5723
12 hours, 6 minutes ago -
Win 7 MS Essentials suddenly not showing number of items scanned.
by
Oldtimer
6 hours, 39 minutes ago -
France : A law requiring messaging apps to implement a backdoor ..
by
Alex5723
1 day, 1 hour ago -
Dev runs Windows 11 ARM on an iPad Air M2
by
Alex5723
1 day, 2 hours ago -
MS-DEFCON 3: Cleanup time
by
Susan Bradley
1 hour, 34 minutes ago -
KB5056686 (.NET v8.0.15) Delivered Twice in April 2025
by
lmacri
21 hours, 24 minutes ago -
How to enable Extended Security Maintenance on Ubuntu 20.04 LTS before it dies
by
Alex5723
1 day, 13 hours ago -
Windows 11 Insider Preview build 26200.5562 released to DEV
by
joep517
1 day, 17 hours ago -
Windows 11 Insider Preview build 26120.3872 (24H2) released to BETA
by
joep517
1 day, 17 hours ago -
Unable to eject external hard drives
by
Robertos42
3 hours, 43 minutes ago -
Saying goodbye to not-so-great technology
by
Susan Bradley
14 minutes ago -
Tech I don’t miss, and some I do
by
Will Fastie
4 hours, 48 minutes ago -
Synology limits hard drives
by
Susan Bradley
2 days, 21 hours ago -
Links from Microsoft 365 and from WhatsApp not working
by
rog7
1 day, 23 hours ago -
WhatsApp Security Advisories CVE-2025-30401
by
Alex5723
3 days, 3 hours ago -
Upgrade Sequence
by
doneager
2 days, 20 hours ago -
Chrome extensions with 6 million installs have hidden tracking code
by
Nibbled To Death By Ducks
1 day, 2 hours ago -
Uninstall “New Outlook” before installing 2024 Home & Business?
by
Tex265
1 day, 19 hours ago -
The incredible shrinking desktop icons
by
Thumper
4 days ago -
Windows 11 Insider Preview Build 22635.5240 (23H2) released to BETA
by
joep517
4 days, 2 hours ago -
Connecting hard drive on USB 3.2 freezes File Explorer & Disk Management
by
WSJMGatehouse
1 day, 1 hour ago -
Shellbag Analyser & Cleaner Update
by
Microfix
18 hours, 40 minutes ago -
CISA warns of increased breach risks following Oracle Cloud leak
by
Nibbled To Death By Ducks
4 days, 11 hours ago -
Outlook 2024 two sent from email addresses
by
Kathy Stevens
3 days, 15 hours ago -
Speeding up 11’s search
by
Susan Bradley
1 day, 23 hours ago -
HP Pavilion Will Not Wake Up After Being Idle for Longer Period
by
WSwalterwood44
2 days, 11 hours ago -
Make a Windows 11 Local Account Passwordless
by
Drcard:))
5 days, 1 hour ago -
Ubuntu 25.04 (Plucky Puffin)
by
Alex5723
5 days, 8 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.