-
WSDoryO
AskWoody LoungerOr you can go straight to the Tools…Macros…Visual Basic Editor (Alt-11) to see where macros are stored now. Do this after you record a simple macro using Tools…Macro…Record and you have something to find when you get there.
The move from old-style keystroke macros to command macros and now…to object-oriented VB macros can be intimidating. I still remember my old File Save macro in Lotus: “/FS~” Simple!
Most people put their VB macros in a module attached to the Workbook, but only visible to you in the VB Editor. It’s not a tab in the Workbook. Experiment with the record macro feature and the VB editor and you’ll start to get the picture. In the VB editor there’s online Help specifically for macros.
-
WSDoryO
AskWoody LoungerSince the only way I know to keep the cells intact is to avoid line breaks, maybe you can replace all “^p” with some special character sequence as placeholders in Word. Then after the import, in Excel replace them back to line breaks with another search/replace.
-
WSDoryO
AskWoody LoungerIf you mean listing all the Templates in your User Templates and Workgroup Templates directories, try a button that runs this macro:
Sub ShowMyTemplates()
Dialogs(wdDialogFileNew).Show
End SubIf you mean something else, then you’ll probably need to create VBA form with a Listbox that can hold a list of “form” names to choose from. You’ll write a macro that adds the names of the available “forms” to this listbox, displays the form, gets your selected row from the Listbox and opens that form.
RE: Automatic startup. Bad experiences in the 1990s with Word Macro Viruses gave me an irrational aversion to automatic startup macros. Tell us more about the forms you have, how you use them, who is going to use them (just you or a workgroup of others, too), etc. and maybe someone will have a great suggestion.
-
WSDoryO
AskWoody LoungerBased on my experience at the office today I can state that the highest levels of complexity (and randomness) are generated by the simplest MINDS, as well. You should see the inventory spreadsheet down in Receiving! Talk about random.
Seriously, thanks for the overview. I just put a hold on Wolfram’s book at my local library. Looks very interesting.
-
WSDoryO
AskWoody Loungermydlg.Format = “Rich Text Format (*.rtf)”
…worked for me once. And I mean ONCE. At least it shows the right files. Doesn’t always change the text displayed in the File Type field of the dialog however. Frustrating.
You can get a list of the built-in dialog properties (Name, Format, etc…) in the online VBA help.
-
WSDoryO
AskWoody LoungerSeriously?
Why not just put a link on your page to the .XLS file itself? Internet Explorer can load an Excel spreadsheet pretty well. If the user wants to save it to their PC they can pull down File..Save as. Try it and see what you think.
But if you think you’re gonna recreate Excel, all its functions and the VBA macro facility in HTML, well…
-
WSDoryO
AskWoody LoungerI don’t know how to turn off that “feature” to prevent them from appearing. Here’s some VBA code to remove them though:
Sub DeleteAllHyperlinks() For Each xlink In ActiveSheet.Hyperlinks xlink.Delete Next xlink End Sub
You could get more precise if you only want to remove email hyperlinks by putting a condition in there like:
If Left(xlink.Address,6)="mailto" then xlink.Delete
-
WSDoryO
AskWoody LoungerI’m a little confused. “Many of the names reappear in EACH ROW” ??? You want a list of unique values in a ROW? With 10,000 records that seems like a big ol’ row.
My gut feeling was that a Pivot Table would solve your problem most easily.
Make a Pivot Table (Data…Pivot Wizard) that uses Vendor Name (Column C) as the Range and as the Row title and you can even use “Count of Vendor Name” as the Data. You really don’t have to select or use any of the other columns in your data table if you don’t want to. Pivot table will give you a column listing all the unique Vendor names. And Pivots update easily.
-
WSDoryO
AskWoody LoungerI vote for Legare’s VLOOKUP suggestion. That’s the elegant way to solve this puzzle.
-
WSDoryO
AskWoody LoungerHunt it down with the Windows Start button…Find files…search your C: for the file NORMAL.DOT.
However, I’m doubtful this is your problem. It sounds like your dialog boxes don’t like you to list additional files or directories or something. Very weird. You’ll probably have to uninstall and reinstall to exorcise this demon possession. In the mean time, it’s easy to rename your NORMAL.DOT to something like NOTNORMAL.DOT. When you restart Word it’ll create a fresh copy of the NORMAL.DOT.
Virus-checking might turn up something. Any problem when you’re in your browser and you try to File…Save…scroll?
-
WSDoryO
AskWoody LoungerMy “memory banks” are suddenly recalling a time when my users where making similar claims about scrolling in a Word doc cause Sudden Application Death Syndrome and the problem was a corrupt file …not in the Open dialog box though. In the actual document.
You could try renaming your NORMAL.DOT file just to see if that has any effect. Also check Tools…Macros to see if any FileOpen macro might have snuck in there to mess you up. That’s how some macro viruses work. They replace your normal commands with a macro that could do anything — usually not something you want.
-
WSDoryO
AskWoody LoungerYup. It’s a bug (I think!) AND you’re missing something.
“Don’t bother trying to set the Title property directly in VB. If you don’t go through the dialog box it doesn’t always work. V. frustrating.” You can use VB to enter the text in the dialog box using the code I posted above.
-
WSDoryO
AskWoody LoungerI use a little macro in Word to display the number of any character I have selected. It comes in handy when I’m trying to embed an unusual character and need to do it in VB. Here it is:
Sub ShowAsciiCode()
MsgBox Str(Asc(Selection))
end subEnter or cut/paste the character in a Word doc, select it, then run this macro. It’ll tell you the number.
-
WSDoryO
AskWoody LoungerOh, yes! Actually that’s what I was doing there. See, if you have text entered in the Document’s Title properties (File…Properties…Title) then when the user saves the file the FIRST time it will use that text instead of the first few words of the document.
I like to do that so the user can save whenever they want. But the macro to replace the save command works too.
-
WSDoryO
AskWoody Lounger[indent]
In Word, you can rotate text in a text box or table cell without having to use WordArt (as you did in previous versions of Word).
On either the Tables and Borders toolbar or the Text Box toolbar, Word provides a Change Text Direction button. The purpose of this button is to rotate the text into one of three predefined directions, and the button reflects the next direction of the text if you were to click the button again.
NOTE: The Change Text Direction button does not indicate the current direction of text, nor can you add a different text direction for use with the Change Text Direction button.
[/indent]– from Microsoft Knowledgebase (specific to Word 97)
![]() |
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
-
*Some settings are managed by your organization
by
rlowe44
2 hours, 32 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
4 hours, 46 minutes ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
5 hours, 10 minutes ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
14 hours, 11 minutes ago -
AI slop
by
Susan Bradley
13 hours, 22 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
15 hours, 28 minutes ago -
Two blank icons
by
CR2
1 hour, 1 minute ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
1 day ago -
End of 10
by
Alex5723
1 day, 3 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
57 minutes ago -
test post
by
gtd12345
1 day, 9 hours ago -
Privacy and the Real ID
by
Susan Bradley
23 hours, 10 minutes ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
15 hours, 17 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
1 day, 13 hours ago -
Upgrading from Win 10
by
WSjcgc50
1 hour, 6 minutes ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
4 hours, 40 minutes ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
2 days, 5 hours ago -
The story of Windows Longhorn
by
Cybertooth
1 day, 16 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
2 days, 7 hours ago -
Are manuals extinct?
by
Susan Bradley
43 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
2 days, 16 hours ago -
Network Issue
by
Casey H
2 days, 3 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
3 days, 4 hours ago -
May 2025 Office non-Security updates
by
PKCano
3 days, 4 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
3 days, 6 hours ago -
pages print on restart (Win 11 23H2)
by
cyraxote
2 days, 7 hours ago -
Windows 11 Insider Preview build 26200.5581 released to DEV
by
joep517
3 days, 8 hours ago -
Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA
by
joep517
3 days, 8 hours ago -
Proton to drop prices after ruling against “Apple tax”
by
Cybertooth
3 days, 16 hours ago -
24H2 Installer – don’t see Option for non destructive install
by
JP
1 hour, 12 minutes 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.