> I can solve with code but it takes alot of it
Is it possible that you could open Notepad, copy your code in from the Excel VBEditor, save it as a Text document (TXT extension) and then post it as an attachment here in the Lounge?
![]() |
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 |
-
Replace values (Excel 2000 VBA)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Replace values (Excel 2000 VBA)
- This topic has 7 replies, 3 voices, and was last updated 21 years, 3 months ago.
AuthorTopicWSunkamunka
AskWoody LoungerFebruary 10, 2004 at 3:49 pm #400508Viewing 0 reply threadsAuthorReplies-
WSmaxbaney
AskWoody LoungerFebruary 10, 2004 at 4:57 pm #781826Subject Edited by HansV to make it more descriptive than “Excel”
I have a problem with an Excel worksheet that I can solve with code but it takes alot of it. This problem relates to golf and a league I’m setting up for the year. On sheet1 I have i.g. 20 names in Col A and their newly updated handicaps in Col B. On sheet2 I have 100 names in Col A and their last years handicaps in Col B. What I would like to do is replace the handicaps on Sheet2 Col B with the newly updated handicaps from Sheet1 Col B. The names on sheet 1, Col A, will not be in the same order as the names on Sheet2 Col A. Sheet1 contains the golfers playing the current week which will change from week to week.
Hopefully I have submitted enough information. I would like to do this with alot less code.
Thank you,
Max -
H. Legare Coleman
AskWoody PlusFebruary 10, 2004 at 4:02 pm #781955Here is the easy way to do this without VBA:
Go to Sheet 2 and select an empty column. Insert the formula below into row 1 of that column:
=IF(ISERROR(VLOOKUP(A1,Sheet1!$A$1:$B$20,2,FALSE)),B1,VLOOKUP(A1,Sheet1!$A$1:$B$20,2,FALSE))
Copy this formula down the column as far as there are names and handicaps in columns A & B.
This column should now display the updated handicaps.
Now, select the column with the updated handicaps and select Copy from The Edit menu. Then select cell B1 and then select “Paste Special” from the edit menu. Put a tic mark next to Values in the Paste section of the dialog box. Click the OK button and the updated handicaps should be put into column B. Now you can delete the column with the formulas.
-
H. Legare Coleman
AskWoody PlusFebruary 10, 2004 at 4:02 pm #781956Here is the easy way to do this without VBA:
Go to Sheet 2 and select an empty column. Insert the formula below into row 1 of that column:
=IF(ISERROR(VLOOKUP(A1,Sheet1!$A$1:$B$20,2,FALSE)),B1,VLOOKUP(A1,Sheet1!$A$1:$B$20,2,FALSE))
Copy this formula down the column as far as there are names and handicaps in columns A & B.
This column should now display the updated handicaps.
Now, select the column with the updated handicaps and select Copy from The Edit menu. Then select cell B1 and then select “Paste Special” from the edit menu. Put a tic mark next to Values in the Paste section of the dialog box. Click the OK button and the updated handicaps should be put into column B. Now you can delete the column with the formulas.
-
H. Legare Coleman
AskWoody PlusFebruary 10, 2004 at 4:22 pm #781963If you want to do this with code, then the code below should do what you want (not really a lot of code). It has the additional advantage that if there is a name on sheet1 that is not on sheet2, the code will add it to sheet 2.
Public Sub UpdateHandicaps() Dim lLastRowNew As Long, lLastRowOld As Long, I As Long, J As Long lLastRowNew = Worksheets("Sheet1").Range("A65536").End(xlUp).Row - 1 For I = 0 To lLastRowNew lLastRowOld = Worksheets("Sheet2").Range("A65536").End(xlUp).Row - 1 For J = 0 To lLastRowOld If Worksheets("Sheet1").Range("A1").Offset(I, 0) = _ Worksheets("Sheet2").Range("A1").Offset(J, 0) Then Worksheets("Sheet2").Range("A1").Offset(J, 1) = _ Worksheets("Sheet1").Range("A1").Offset(I, 1) Exit For End If Next J If J > lLastRowOld Then Worksheets("Sheet2").Range("A1").Offset(J, 0) = _ Worksheets("Sheet1").Range("A1").Offset(I, 0) Worksheets("Sheet2").Range("A1").Offset(J, 1) = _ Worksheets("Sheet1").Range("A1").Offset(I, 1) End If Next I End Sub
-
H. Legare Coleman
AskWoody PlusFebruary 10, 2004 at 4:22 pm #781964If you want to do this with code, then the code below should do what you want (not really a lot of code). It has the additional advantage that if there is a name on sheet1 that is not on sheet2, the code will add it to sheet 2.
Public Sub UpdateHandicaps() Dim lLastRowNew As Long, lLastRowOld As Long, I As Long, J As Long lLastRowNew = Worksheets("Sheet1").Range("A65536").End(xlUp).Row - 1 For I = 0 To lLastRowNew lLastRowOld = Worksheets("Sheet2").Range("A65536").End(xlUp).Row - 1 For J = 0 To lLastRowOld If Worksheets("Sheet1").Range("A1").Offset(I, 0) = _ Worksheets("Sheet2").Range("A1").Offset(J, 0) Then Worksheets("Sheet2").Range("A1").Offset(J, 1) = _ Worksheets("Sheet1").Range("A1").Offset(I, 1) Exit For End If Next J If J > lLastRowOld Then Worksheets("Sheet2").Range("A1").Offset(J, 0) = _ Worksheets("Sheet1").Range("A1").Offset(I, 0) Worksheets("Sheet2").Range("A1").Offset(J, 1) = _ Worksheets("Sheet1").Range("A1").Offset(I, 1) End If Next I End Sub
-
WSmaxbaney
AskWoody Lounger -
WSmaxbaney
AskWoody Lounger
-
Viewing 0 reply threads -

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
-
Frustrating search behavior with Outlook
by
MrJimPhelps
1 hour, 15 minutes ago -
June 2025 Office non-Security Updates
by
PKCano
4 hours, 28 minutes ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
1 hour, 33 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
4 hours, 24 minutes ago -
How start headers and page numbers on page 3?
by
Davidhs
14 hours, 48 minutes ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
9 hours, 23 minutes ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
23 hours, 29 minutes ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
23 hours, 30 minutes ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
13 hours, 12 minutes ago -
Firefox 139
by
Charlie
5 hours, 47 minutes ago -
Who knows what?
by
Will Fastie
19 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 day ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
18 hours, 38 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day, 2 hours ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
2 days, 6 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
3 hours, 31 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
2 days, 4 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
1 day, 3 hours ago -
Edge Seems To Be Gaining Weight
by
bbearren
1 day, 19 hours ago -
Rufus is available from the MSFT Store
by
PL1
2 days, 3 hours ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
3 days, 5 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
1 day, 5 hours ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 day, 4 hours ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
3 days, 1 hour ago -
Office gets current release
by
Susan Bradley
3 days, 4 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
4 days, 18 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
4 days, 2 hours ago -
Stop the OneDrive defaults
by
CWBillow
4 days, 19 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
5 days, 5 hours ago -
X Suspends Encrypted DMs
by
Alex5723
5 days, 7 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.