-
WSfrankwalsh1962
AskWoody LoungerYes, it would certainly help to see sample data, otherwise we have no idea what you’re working with.
I hope this is helpful. I’ve attached a workbook with dummy data, in real life two workbooks with multiple sheets are used. Don Well’s assumption hold true – every module code is of the form 9ABC?123, (the ? is either a digit or a letter). So here goes with the problem:
My university offers courses for healthcare professionals working in hospitals in England. The hospitals are called Trusts, and buying a place on a course is called ‘commisioning’. Each course is called a Module.
I have a list of module applications, from each Trust.
For each module code, I need the the number of people wanting a place from each Trust
This number goes into the corresponding row of the ‘places per module’ sheets, one sheet for each Trust.‘Applicants for places’ is one workbook, with a sheet for each of the (several dozen) Trusts. We get a new workbook every month, with all that month’s new applications.
‘Places per module’ is a separate workbook, with a sheet for each Trust, the list of modules is the same for each Trust. Here we log the new applications in the column for that month, and it keeps the running total.By hand, we can run down the applications list by eye, and tally the rows with any given module code. The total goes into the appropriate cell in the sheet for that Trust, ie row for the module, column for the current month. We have to do that for each module code, for each Trust in turn, every month. There are over a hundred modules, several tens of trusts, and many hundreds of students over the course of a year.
The relevant column in ‘applicants for places’ is CF Module Code, the other column are not of interest here.
The match is with the value in ‘Code’ (col A). The total goes into the current month column.
Sometimes the col A value is the module code, sometime we find more than one code as some courses have two code attached to it. It would be possible to create a separate row for each in these cases if that made the VBA easier to create.Thanks in advance, Frank.
-
WSfrankwalsh1962
AskWoody LoungerThis looks to be turning into a big (for me) project.
I’ve broken it down into several chunks, the first is to locate a row where col A contains the course code, then find the column for the current month.
Next, locate a specific column in another workbook and count the number of times that course code appears – in a column containing many different codes.
This total then should appear in the current month column of the first workbook.
I’ll create some dummy wsheets over the weekend and post them if that would help folk get a handle on things.
Frank
-
WSfrankwalsh1962
AskWoody LoungerAugust 10, 2009 at 10:48 am in reply to: dates in 'text' format need to be put in proper order for importing to outlook #1172907Hans, thank you very much for this, I shall try it out.
Unfortunately, the originator did not know we were going to import into Outlook, and would not have known the correct format to use in any case.
Plus this is a one-off and *should* never have to be done again
Frank -
WSfrankwalsh1962
AskWoody LoungerAugust 7, 2009 at 11:00 am in reply to: dates in 'text' format need to be put in proper order for importing to outlook #1172626All times have four digits, 0900 or 0830 etc. in a few cases, a period is included 09.00 but never a colon.
Also there may or may not be spacing around the hypen, or only a single four digit time is included ie no end time.
Thanks Hans, it feels good to have you on the case. -
WSfrankwalsh1962
AskWoody LoungerAugust 4, 2009 at 7:21 am in reply to: make excel print landscape all the time, no matter what #1172219Thanks Hans, that lovely.
-
WSfrankwalsh1962
AskWoody LoungerThanks, I may go the VBA route if it gets too annoying.
( We are all having great fun here at the office comparing experiences with the new GUI, inversely correlated with productivity)
Frank -
WSfrankwalsh1962
AskWoody LoungerSelect Tools | AutoCorrect options… and activate the AutoText tab.
Alternatively, select Insert | AutoText | AutoText…
Clear the check box “Show AutoComplete suggestions”.
Click OK.Unfortunately, this will turn off ALL autocomplete suggestions, including those for AutoText entries. As far as I know, there is no way to turn of AutoComplete for specific items only.
Hi Hans,
I forgot to mention we have all been ‘upgraded’ to the 2007 version of office, and all my Tools have been taken away. I had a look through the Word Options part of the Button but can’t find autocomplete checkbox. -
WSfrankwalsh1962
AskWoody LoungerThanks Hans, that worked perfectly. Frank
-
WSfrankwalsh1962
AskWoody LoungerAre you sure it’s an island? From Wiki:
In any case, since the criteria was the amount of time necessary to travel to a city, you would need ‘someone’ to do just that. Something that can’t be done, since nobody is there.
Bouvet Island is visible (some of the time at least – weather permitting) from google earth. It is in the advertised spot and appears to be an island.
I propose a trip to the island, and from there to any city of your choice. I am willing to do the travelling, if you organise everything and provide financing. -
WSfrankwalsh1962
AskWoody LoungerEr, which part of the following did you miss from my opening post:
But if you really want a prize, I offer two low calorie chockie bars! –> For second place
For inaccesability, it would be hard to beat Bouvet Island ( http://en.wikipedia.org/wiki/Bouvet_Island ), the place most distant from any other land mass, in this case antarctica. It is also almost impossible to land on the island when you arrive, either by ship or air.
-
WSfrankwalsh1962
AskWoody LoungerMay 1, 2009 at 7:39 am in reply to: Update word table cells from excel cell values (XP 2003) #1158821Hi Frank,
To get the link to update to point to whatever the current folder is, you’ll need to add the macro attached to my [post=”670027″]Relative Paths Star Post[/post] to your Word document.
As an aside, if you name the linked range for a given table in Excel, you then then tell Word to use that range for any updates. This can be useful if the number of rows/olumns in the Excel range is liable to change. On the Word side, all you need to do to implement this is to:
. select the linked data
. press Shift-F9 to expose the field code, which will look like { LINK Excel.Sheet.# “C:\Users\ … \Analysis.xls” “Sheet1!R1C1:R5C5” a r }
. change the field code to { LINK Excel.Sheet.# “C:\Users\ … \Analysis.xls” “RangeName” a r } where ‘RangeName’ is your Excel range’s name.
. press F9 to update the field.Thanks guys – stereo replies! I’ll work on it over the weekend.
Frank -
WSfrankwalsh1962
AskWoody LoungerMay 1, 2009 at 6:05 am in reply to: Update word table cells from excel cell values (XP 2003) #1158811Perfect Hans, this does exactly what I need.
Many thanks, FrankThis is a further query to my one of last July. I am now trying to change the field code so that it picks up from a workbook in the same folder as the word doc, even if the two files are moved around ie into other folders/computers. I want the pair to be ‘portable’ between users, and thought I could edit the field code to start with ‘..workbookname etc to refer to a file in the same folder. I can’t tell if this worked or not! The name of the files will not change across users, but the data content will. Any help gratefully accepted. Frank
-
WSfrankwalsh1962
AskWoody LoungerApril 28, 2009 at 11:08 am in reply to: forward attachement to recipients in a given category #1158386I don’t have Outlook 2007. In Outlook 2003 one can Filter Contacts list through the View menu, then select all the Contacts displayed in the resulting View, and then use Message to Contact; all the selected Contacts are included on the To: line. In the Outlook 2003 Contact View Filter settings, the “More choices” dialog allows selection of multiple Categories. Can you test that in Outlook 2007? If it works, note that you can permanently save Filtered Views under new View names and call them up through the View Menu.
(If the Category memberships are as volatile as you describe, managing them will always be a burden.)
Hi John, the method you describe is the one I currently use. Displaying the contacts grouped by category also works. Once I have a blank email with the To.. field populated by 30 or 40 names, I copy them to the email I am forwarding and paste into (usually) CC and then send it. This is so that the attachments get forwarded – lazy me just wants to save a few mouse clicks! I have not found a more efficient way but hope the loungers might know a trick ……..
Cheers. -
WSfrankwalsh1962
AskWoody LoungerApril 28, 2009 at 10:21 am in reply to: forward attachement to recipients in a given category #1158381Why not use distribution lists with easy to remember names? However, you have to remember to update the distribution list members when there is a personnel change.
Joe
Hi Joe, I don’t use dist lists for just that reason. Contacts may be in several, many or far too many categories, and the categories change almost daily – ie which project or phase a person is in. I can just about keep up with maintaining a contact and it’s categories, using the open contact form but found DLists to be unworkable. The amount of traffic is increasing, up to now I could cope with the clunky copy and paste method. 2007 won’t allow me to select by category in the ‘Select recipients’ box which open when I click the ‘To… ‘button which would be a great solution.
-
WSfrankwalsh1962
AskWoody LoungerMarch 18, 2009 at 6:43 am in reply to: Display the 'notes' of an appointment in moth/week view #1152541Thanks Hans
I also see that the monthly view sometimes doesn’t show all the entries for a given day, the square space being too small, and a little arrow appears as if to say ‘more’ which is useful.
Frank
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Office gets current release
by
Susan Bradley
2 hours, 11 minutes ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
18 hours, 43 minutes ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
3 hours, 14 minutes ago -
Stop the OneDrive defaults
by
CWBillow
19 hours, 32 minutes ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
1 day, 5 hours ago -
X Suspends Encrypted DMs
by
Alex5723
1 day, 7 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
1 day, 7 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
1 day, 8 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
1 day, 9 hours ago -
Backup and access old e-mails after company e-mail address is terminated
by
M W Leijendekker
21 hours, 22 minutes ago -
Enabling Secureboot
by
ITguy
1 day, 4 hours ago -
Windows hosting exposes additional bugs
by
Susan Bradley
1 day, 17 hours ago -
No more rounded corners??
by
CWBillow
1 day, 12 hours ago -
Android 15 and IPV6
by
Win7and10
1 day, 2 hours ago -
KB5058405 might fail to install with recovery error 0xc0000098 in ACPI.sys
by
Susan Bradley
2 days, 5 hours ago -
T-Mobile’s T-Life App has a “Screen Recording Tool” Turned on
by
Alex5723
2 days, 8 hours ago -
Windows 11 Insider Preview Build 26100.4202 (24H2) released to Release Preview
by
joep517
2 days, 2 hours ago -
Windows Update orchestration platform to update all software
by
Alex5723
2 days, 15 hours ago -
May preview updates
by
Susan Bradley
2 days, 2 hours ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
1 day, 18 hours ago -
Just got this pop-up page while browsing
by
Alex5723
2 days, 7 hours ago -
KB5058379 / KB 5061768 Failures
by
crown
2 days, 4 hours ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
1 day, 6 hours ago -
At last – installation of 24H2
by
Botswana12
3 days, 7 hours ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
4 hours, 43 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
3 days, 19 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day, 17 hours ago -
Limited account permission error related to Windows Update
by
gtd12345
4 days, 8 hours ago -
Another test post
by
gtd12345
4 days, 8 hours ago -
Connect to someone else computer
by
wadeer
10 hours, 3 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.