-
WSLeighW
AskWoody LoungerThanks for your response Hans. I had already searched the Lounge and found your reply to another post that mentioned this Labeler. I installed it but couldn’t find it anywhere – but I have now found where it ended up – under the Tools menu!! (Seems logical in hindsight).
I was right-clicking away on a data label on thechart and got frustrated, shut down Excel, restarted Excel, removed the Add-In, re-installed the Add-In and knew it had to be somewhere. And there it was in the Tools menu… Works as expected.
Now, does anyone know how to change the XY scatter chart’s data points to a cross (+ – instead of a diamond, square, dash, etc.)?
Thanks for the pointer, very much appreciated, Leigh
-
WSLeighW
AskWoody LoungerThanks Hans, for your sage words of advice regarding shared workbooks. (A bit like Master Documents in Word? That was a dud for me. Never had a lot of success and actually corrupted about 6 chapters of a manual that a team was working on…)
OK, can you tell me more about multiple users of documents? For the workbook in question I just assumed that it needed to be shared but this is how it is to be used.
- Whilst more than one person may use the job register, they will generally be using a different worksheet.
[/list]Does that cause any problems with more than one person opening it and then trying to save and close their session?What are your thoughts about separate workbooks with (dare I say it?) a “master workbook” that collates, via links, all the data? Individual sheets would be just linked to each of the line areas workbooks. Then only one person would need to open and view the “master” whilst individual line managers updated their own job registers.
Would that work?
- Whilst more than one person may use the job register, they will generally be using a different worksheet.
-
WSLeighW
AskWoody LoungerSteve
If you have checked for the obvious with AdAware, SpyBot, etc. then you might check that the HDD is not reached more than 80% capacity. The Windows swap file usage can have a bearing on the speed of applications. (You might want to limit it to a specific size rather than rubber banding.)
Also applications like MS Outlook and MS Access do use a lot of resources by themselves let alone when they are running at the same time.
Try reducing the number of applications actually running by using the TasK Manager to selectively stop them and note if there is any change in speed for the better. This may help identify the culprit.
Leigh
-
WSLeighW
AskWoody LoungerNote of Action
Unable to try the options suggested but won’t get a chance for about 2 weeks now. I’ll kepp the Lounge posted on the outcome.
-
WSLeighW
AskWoody LoungerThanks Leif
I did a further web search on “uplink” and “ethernet” and “hub” and came across the sort of information you mention.
Regrettably, I will not be able to test this until next Monday as the office is now closed but will report on my success (or otherwise) then.
Again, many thanks…
-
WSLeighW
AskWoody LoungerThanks (as always) Hans
Sorry for the slow response but I am a one-man band and sometimes I need to keep the wolves at bay with site visits.
A selection of the code on Ron de Bruin’s website set me on the right path.
I can’t imagine that my client will have to worry that the calculations sheet will accidentally be sent with the quote.
-
WSLeighW
AskWoody LoungerThanks Hans
I always get the dialog to appear when I try the template from my office. But dialog box doesn’t appear at the client location and that is what perplexes me. Why (or what) would cause it not to appear. BTW the dialog (copy below for other readers) appears whether the file has been saved to disk or not.
Can I programmatically make sure that only the selection is e-mailed and therefore not have to rely on the appearance of the dialog?
If so, can you suggest the code that would do it?
-
WSLeighW
AskWoody LoungerFurther to my previous post here is the relevant code to describe what is happening.
Code for the form to select object to print or e-mail:
Private Sub cmdOK_Click() If optQuoteInt = True Then Range("InternalCopy").PrintOut Unload Me ElseIf optQuoteCust = True Then Range("CustomerCopy").PrintOut Unload Me ElseIf optBoth = True Then Range("InternalCopy").PrintOut Range("CustomerCopy").PrintOut Unload Me ElseIf optEMail = True Then Call SendMail Unload Me End If End Sub
And the code to select the area to be e-mailed.
Sub SendMail() Sheets("Quote - e-mail version").Select Application.Goto Reference:="CustomerCopy" 'print area on customer sheet End Sub
What should I be trying?
-
WSLeighW
AskWoody LoungerThanks Andrew, I take your advice and agree that it would be best as an occasional add-in due to its expected limited use.
Thanks for your input…
-
WSLeighW
AskWoody LoungerAndrew, I must lead a sheltered life – but I must admit that I like what both you and Hans have offered!! Just brilliant and I am very appreciative of the insight I have gained from your replies.
Attachment is the revised version for any Loungers that are following this thread. It incorporates the features mentioned by both Hans and Andrew and a small cleanup to the userform and added a toolbar button to a new toolbar that is attached to the document. As before, I would suggest that the userform, module and the toolbar button be moved to your Normal.dot so that it can be available whenever you need to print partial label sheets.
It is not intended for use with the mailmerge command – although maybe it could be modified.
-
WSLeighW
AskWoody LoungerAttachment contains a macro suitable for selecting which labels you want to print from a sheet when the Avery (or whichever brand) label sheet has been partly used.
If you think the code is not efficiently written then by all means please post a reply. I am happy to see others suggestions.
To use this code I would think that you would open the MS Word attachment and copy the userform (frmLabelSelect) and the module (labelPrint) to your Normal.dot template. Then create a simple toolbar button to run the macro.
If you have any suggestions on improvements please post.
-
WSLeighW
AskWoody LoungerThanks Hans,
That code was exactly what was needed – I did modify it to print the request and just to make sure that the labels template was closed without saving changes.
Do you think other Loungers would benefit from the whole code being posted?
-
WSLeighW
AskWoody LoungerI should give some more detail.
* This process is not intended for mail-merge.
* Currently there are a number of templates that match the label sheets with the required labels already on them.
* The labels are meant for product (cans/cartons) and are printed as required.
* Sometimes, not a whole sheet is used, and rather than waste it, currently the template is opened and the ‘not to be printed’ labels are changed to white font.
* The user will choose the label type from the left frame and then select the labels to print from the right frame checkboxes.Currently, only the label types shown are in use. (ie 2 across by 2 down, 2 across by 4 down,… 3 across by 8 down) but the form can be modified to suit the actual template (read label sheet type).
Does that make it easier to understand?
-
WSLeighW
AskWoody LoungerForgive me – having not used the Switchboard previously, I did not realise that although I could not work out how to tell it to run a Function, I could simply create a macro and call that.
Yes, it was simple, really, but it does help to spend a bit of time exploring features before reaching for the keyboard! Thanks.
-
WSLeighW
AskWoody LoungerForgive me – having not used the Switchboard previously, I did not realise that although I could not work out how to tell it to run a Function, I could simply create a macro and call that.
Yes, it was simple, really, but it does help to spend a bit of time exploring features before reaching for the keyboard! Thanks.
![]() |
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
-
Can’t make Opera my default browser
by
bmeacham
1 hour, 52 minutes ago -
Do not Fall For This Purdentix Scam (Awaiting moderation)
by
elizabethkaur56
1 hour, 59 minutes ago -
*Some settings are managed by your organization
by
rlowe44
11 hours, 58 minutes ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
14 hours, 12 minutes ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
14 hours, 36 minutes ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
23 hours, 37 minutes ago -
AI slop
by
Susan Bradley
22 hours, 48 minutes ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
1 day ago -
Two blank icons
by
CR2
10 hours, 27 minutes ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
1 day, 9 hours ago -
End of 10
by
Alex5723
1 day, 12 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
10 hours, 23 minutes ago -
test post
by
gtd12345
1 day, 18 hours ago -
Privacy and the Real ID
by
Susan Bradley
1 day, 8 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
1 day ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
1 day, 22 hours ago -
Upgrading from Win 10
by
WSjcgc50
10 hours, 32 minutes ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
14 hours, 6 minutes ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
2 days, 14 hours ago -
The story of Windows Longhorn
by
Cybertooth
2 days, 2 hours ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
2 days, 16 hours ago -
Are manuals extinct?
by
Susan Bradley
2 hours, 4 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
3 days, 1 hour ago -
Network Issue
by
Casey H
2 days, 12 hours ago -
Fedora Linux is now an official WSL distro
by
Alex5723
3 days, 13 hours ago -
May 2025 Office non-Security updates
by
PKCano
3 days, 14 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
3 days, 15 hours ago -
pages print on restart (Win 11 23H2)
by
cyraxote
2 days, 16 hours ago -
Windows 11 Insider Preview build 26200.5581 released to DEV
by
joep517
3 days, 18 hours ago -
Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA
by
joep517
3 days, 18 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.