> 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?
![]() |
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 |
-
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
-
89 million Steam account details just got leaked,
by
Alex5723
6 hours ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
6 hours, 8 minutes ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
34 minutes ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
6 hours, 50 minutes ago -
Installer program can’t read my registry
by
Peobody
7 hours, 23 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
19 hours, 38 minutes ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
2 hours, 14 minutes ago -
False error message from eMClient
by
WSSebastian42
17 hours, 16 minutes ago -
Awoke to a rebooted Mac (crashed?)
by
rebop2020
1 day, 2 hours ago -
Office 2021 Perpetual for Mac
by
rebop2020
1 day, 3 hours ago -
AutoSave is for Microsoft, not for you
by
Will Fastie
9 minutes ago -
Difface : Reconstruction of 3D Human Facial Images from DNA Sequence
by
Alex5723
1 day, 7 hours ago -
Seven things we learned from WhatsApp vs. NSO Group spyware lawsuit
by
Alex5723
8 hours, 7 minutes ago -
Outdated Laptop
by
jdamkeene
1 day, 12 hours ago -
Updating Keepass2Android
by
CBFPD-Chief115
1 day, 17 hours ago -
Another big Microsoft layoff
by
Charlie
1 day, 17 hours ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
21 hours, 1 minute ago -
May 2025 updates are out
by
Susan Bradley
10 hours, 38 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
1 day, 23 hours ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
1 day, 23 hours ago -
Drivers suggested via Windows Update
by
Tex265
1 day, 23 hours ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
1 day, 21 hours ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
2 days, 6 hours ago -
Apple releases 18.5
by
Susan Bradley
2 days ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
2 days, 7 hours ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
2 days, 8 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
16 hours, 59 minutes ago -
No HP software folders
by
fpefpe
2 days, 16 hours ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
1 day, 13 hours ago -
Stay connected anywhere
by
Peter Deegan
2 days, 21 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.