-
WSDon_Sadler
AskWoody LoungerFantastic. Thank you.
-
WSDon_Sadler
AskWoody LoungerFantastic. Thank you.
-
WSDon_Sadler
AskWoody Lounger(Edited by Don_Sadler on 18-Sep-03 12:00. To further explain the automated repetition desired.)
I always want to transpose it three cells to the right of the selected cell. Sorry, I should have mentioned it. Your code works beautifully. Is there a way to automate it so it will continue until there is no more data?
I have added code to move the active cell to the next starting point so I can execute the macro again. This works well but each starting cell should contain the entry “Name:” without the quotes. I would like the macro to continue until the cell does not contain “Name:”
-
WSDon_Sadler
AskWoody Lounger(Edited by Don_Sadler on 18-Sep-03 12:00. To further explain the automated repetition desired.)
I always want to transpose it three cells to the right of the selected cell. Sorry, I should have mentioned it. Your code works beautifully. Is there a way to automate it so it will continue until there is no more data?
I have added code to move the active cell to the next starting point so I can execute the macro again. This works well but each starting cell should contain the entry “Name:” without the quotes. I would like the macro to continue until the cell does not contain “Name:”
-
WSDon_Sadler
AskWoody LoungerDave, thanks to your request, my problem is solved. I was trying to figure out what you actually wanted a screen shot of since the SMTP settings were the same. As I was examining each screen trying to determine what you needed that was different from I described, I realized that in Account 1, I spelled “adelphia” correctly but in Account 2, I spelled it “adlephia”. Obviously that was why it didn’t work. I corrected it and I am now happy. I need to go wash the egg off my face now. Thanks again for your patience and cheerful persistence.
-
WSDon_Sadler
AskWoody LoungerDave, thanks to your request, my problem is solved. I was trying to figure out what you actually wanted a screen shot of since the SMTP settings were the same. As I was examining each screen trying to determine what you needed that was different from I described, I realized that in Account 1, I spelled “adelphia” correctly but in Account 2, I spelled it “adlephia”. Obviously that was why it didn’t work. I corrected it and I am now happy. I need to go wash the egg off my face now. Thanks again for your patience and cheerful persistence.
-
WSDon_Sadler
AskWoody LoungerThanks for the reply, Dave. In fact, that IS the problem – I do have exact same settings for outgoing SMTP for both accounts – the same ISP server. That is why I am confused. Outlook will connect to my ISP SMTP server for Account 1 but will not connect for Account 2 despite the fact that it is the same server with the same settings.
-
WSDon_Sadler
AskWoody LoungerThanks for the reply, Dave. In fact, that IS the problem – I do have exact same settings for outgoing SMTP for both accounts – the same ISP server. That is why I am confused. Outlook will connect to my ISP SMTP server for Account 1 but will not connect for Account 2 despite the fact that it is the same server with the same settings.
-
WSDon_Sadler
AskWoody LoungerAugust 25, 2003 at 7:32 pm in reply to: Moving last names to another column (Excel 2000 SR1) #705196I often run into this problem so here are three notes I made to which I often refer. You may need to adjust them to meet your needs but there are written “conceptually”:
==================================================
Excel – last name sortPut the names in a spreadsheet starting in A1. Then, place the formula below in B1 and replicate it all the way down until the last name in the list is covered.
=RIGHT(A1, LEN(A1)-FIND(” “, A1))
When the all the names have been done, select all the full names and all the last names. Then, choose (from the menu) Data, Sort. Sort on column B.
================================================
Excel – lastname, firstname -> firstname lastnamePut the names in a spreadsheet starting in A1. Then, place the formula below in B1 and replicate it all the way down until the last name in the list is covered.
=RIGHT(A1, LEN(A1)-FIND(” “, A1))&” “&LEFT(A1, FIND(“,”, A1)-1)
=============================================================
Excel – lastname, firstname -> lastname firstname (two columns)Put the names in a spreadsheet starting in A1. Then, place the formulas below in B1 and B2 then replicate them all the way down until the last name in the list is covered.
B1 =LEFT(A1, FIND(“,”, A1)-1)
B2 =RIGHT(A1, LEN(A1)-FIND(” “, A1))
-
WSDon_Sadler
AskWoody LoungerAugust 25, 2003 at 7:32 pm in reply to: Moving last names to another column (Excel 2000 SR1) #705197I often run into this problem so here are three notes I made to which I often refer. You may need to adjust them to meet your needs but there are written “conceptually”:
==================================================
Excel – last name sortPut the names in a spreadsheet starting in A1. Then, place the formula below in B1 and replicate it all the way down until the last name in the list is covered.
=RIGHT(A1, LEN(A1)-FIND(” “, A1))
When the all the names have been done, select all the full names and all the last names. Then, choose (from the menu) Data, Sort. Sort on column B.
================================================
Excel – lastname, firstname -> firstname lastnamePut the names in a spreadsheet starting in A1. Then, place the formula below in B1 and replicate it all the way down until the last name in the list is covered.
=RIGHT(A1, LEN(A1)-FIND(” “, A1))&” “&LEFT(A1, FIND(“,”, A1)-1)
=============================================================
Excel – lastname, firstname -> lastname firstname (two columns)Put the names in a spreadsheet starting in A1. Then, place the formulas below in B1 and B2 then replicate them all the way down until the last name in the list is covered.
B1 =LEFT(A1, FIND(“,”, A1)-1)
B2 =RIGHT(A1, LEN(A1)-FIND(” “, A1))
-
WSDon_Sadler
AskWoody LoungerI, too, am out of my element but want to offer this idea. I suspect that there may be either an OS, CMOS, or H/W setting(s) where you can choose between static or dynamic ne#’s. Obviously, the OS is able to distinguish between printers regardless of the NE# so this ability must be available to the developer/user. Then, again, I could be (am probably) wrong.
-
WSDon_Sadler
AskWoody LoungerI, too, am out of my element but want to offer this idea. I suspect that there may be either an OS, CMOS, or H/W setting(s) where you can choose between static or dynamic ne#’s. Obviously, the OS is able to distinguish between printers regardless of the NE# so this ability must be available to the developer/user. Then, again, I could be (am probably) wrong.
-
WSDon_Sadler
AskWoody LoungerI guess I should have been more clear in my posting. I know I can add to the text in the text box but I have developed many verses that I would like to have included in the wizard so that I can select my customized verses and have the text boxes automatically filled with my verses instead of having to manually type it in.
It may have been clearer if I had said “add verses to the wizard”.
-
WSDon_Sadler
AskWoody LoungerThanks to all – that did the trick. It is certainly a relief to not have those messages.
-
WSDon_Sadler
AskWoody LoungerAugust 2, 2003 at 1:43 am in reply to: Installing Off 2K Upgrade w/o Qualifying Product (Office 2k Premium) #699088Mark, my question is off topic but how do you insert that graphic (the MS Office setup message box) into a post? When I have wanted to insert a graphic, I only seem to have the option of attaching a file. Thanks, Don
![]() |
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
-
Oracle kinda-sorta tells customers it was pwned
by
Nibbled To Death By Ducks
2 hours, 53 minutes ago -
Global data centers (AI) are driving a big increase in electricity demand
by
Kathy Stevens
13 hours, 13 minutes ago -
Office apps read-only for family members
by
b
15 hours, 49 minutes ago -
Defunct domain for Microsoft account
by
CWBillow
12 hours, 41 minutes ago -
24H2??
by
CWBillow
2 hours, 52 minutes ago -
W11 23H2 April Updates threw ‘class not registered’
by
WindowsPersister
1 day ago -
Master patch listing for April 8th, 2025
by
Susan Bradley
44 minutes ago -
TotalAV safety warning popup
by
Theodore Nicholson
12 hours, 37 minutes ago -
two pages side by side land scape
by
marc
2 days, 13 hours ago -
Deleting obsolete OneNote notebooks
by
afillat
2 days, 15 hours ago -
Word/Outlook 2024 vs Dragon Professional 16
by
Kathy Stevens
1 day, 18 hours ago -
Security Essentials or Defender?
by
MalcolmP
1 day, 21 hours ago -
April 2025 updates out
by
Susan Bradley
2 hours, 20 minutes ago -
Framework to stop selling some PCs in the US due to new tariffs
by
Alex5723
1 day, 14 hours ago -
WARNING about Nvidia driver version 572.83 and 4000/5000 series cards
by
Bob99
1 day, 4 hours ago -
Creating an Index in Word 365
by
CWBillow
2 days, 7 hours ago -
Coming at Word 365 and Table of Contents
by
CWBillow
19 hours, 21 minutes ago -
Windows 11 Insider Preview Build 22635.5170 (23H2) released to BETA
by
joep517
3 days, 10 hours ago -
Has the Microsoft Account Sharing Problem Been Fixed?
by
jknauth
3 days, 14 hours ago -
W11 24H2 – Susan Bradley
by
G Pickerell
3 days, 16 hours ago -
7 tips to get the most out of Windows 11
by
Alex5723
3 days, 14 hours ago -
Using Office apps with non-Microsoft cloud services
by
Peter Deegan
3 days, 7 hours ago -
I installed Windows 11 24H2
by
Will Fastie
1 day, 13 hours ago -
NotifyIcons — Put that System tray to work!
by
Deanna McElveen
3 days, 19 hours ago -
Decisions to be made before moving to Windows 11
by
Susan Bradley
12 hours, 46 minutes ago -
Port of Seattle says ransomware breach impacts 90,000 people
by
Nibbled To Death By Ducks
4 days, 3 hours ago -
Looking for personal finance software with budgeting capabilities
by
cellsee6
3 days, 11 hours ago -
ATT/Yahoo Secure Mail Key
by
Lil88reb
3 days, 12 hours ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
4 days, 20 hours ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
5 days, 5 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.