使用 .Find 在 VBA 中合并表时出现对象定义错误
我正在尝试从头开始编写我的第一个宏。我在 Sheet2 上有一组 16 个表,其模式中的列为:ID 列表、空白、值 1、值 2、值 3、值 4、空白、下一个 ID 列表、空白、值 1 等...
每个表中的 ID 都是唯一的但每次都不一样,所以我试图编写一个宏来将 ID 与 Sheet1 上找到的 ID 的完整列表相匹配。如果存在匹配项,我想将四个值列复制到 Sheet1 上的正确位置。否则只需输入一些零即可。
如果你还不知道,我是新手,不知道我在做什么!我得到了 “应用程序定义或对象定义的错误”在我尝试使用 .Find 的行上,如果有人能指出我哪里出错了,我将非常感激?
Sub Macro1()
Dim i As Integer
Dim y As Integer
Dim index As Long
Dim UniverseCount As Integer
Dim ID As String
Dim Position As Range
'Count total number of IDs
Sheets("Sheet1").Select
Range("A2").Select
Range(Selection, Selection.End(xlDown)).Select
UniverseCount = Selection.Rows.Count
'Search loop
For y = 0 To 16
For i = 0 To UniverseCount
'Pick ID to look for
Sheets("Sheet1").Select
Range("A2").Offset(i, 0).Select
ID = Selection.Value
With Sheet2
Set Position = .Columns(7 * y).Find(What:=ID, After:=.Cells(1, 1), LookIn:=xlValues, LookAt:=xlWhole)
If Not Position Is Nothing Then
Position.Offset(0, 2).Select
Range(Selection, Selection.End(xlRight)).Select
Selection.Copy
Sheets("Sheet1").Range("A2").Offset(i, 2 + 4 * y).Select
ActiveSheet.Paste
Else
Sheets("Sheet1").Select
Range("A2").Offset(i, 2 + 4 * y).Select
Set Range(Selection, Selection.Offset(0, 4)).Value = 0
End If
End With
Next i
Next y
End Sub
I'm trying to write my first macro from scratch. I have a set of 16 tables on Sheet2, with the columns in the pattern: ID list, blank, value1, value2, value3, value4, blank, next ID list, blank, value1 etc...
The IDs in each table are unique but not the same each time, so I am trying to write a macro to match the ID to a complete list of IDs which are found on Sheet1. If there is a match, I want to copy over the four value columns into the right place on Sheet1. Otherwise just put in some zeroes.
If you can't tell already, I'm new to this and have no idea what I'm doing! I'm getting
"application-defined or object-defined error" on the line where I try to use .Find, I would really appreciate it if somebody could point out where I'm going wrong?
Sub Macro1()
Dim i As Integer
Dim y As Integer
Dim index As Long
Dim UniverseCount As Integer
Dim ID As String
Dim Position As Range
'Count total number of IDs
Sheets("Sheet1").Select
Range("A2").Select
Range(Selection, Selection.End(xlDown)).Select
UniverseCount = Selection.Rows.Count
'Search loop
For y = 0 To 16
For i = 0 To UniverseCount
'Pick ID to look for
Sheets("Sheet1").Select
Range("A2").Offset(i, 0).Select
ID = Selection.Value
With Sheet2
Set Position = .Columns(7 * y).Find(What:=ID, After:=.Cells(1, 1), LookIn:=xlValues, LookAt:=xlWhole)
If Not Position Is Nothing Then
Position.Offset(0, 2).Select
Range(Selection, Selection.End(xlRight)).Select
Selection.Copy
Sheets("Sheet1").Range("A2").Offset(i, 2 + 4 * y).Select
ActiveSheet.Paste
Else
Sheets("Sheet1").Select
Range("A2").Offset(i, 2 + 4 * y).Select
Set Range(Selection, Selection.Offset(0, 4)).Value = 0
End If
End With
Next i
Next y
End Sub
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的关键问题是 Sheet2 上的此
Find
行不一致代码从 0 迭代到 16(大概应该是 1 到 16),但您的断开连接是您在
中搜索的列.Columns(7 * y)
是变量,即 0、7、14 但是您正尝试在A1
每次都使用After:=.Cells(1, 1)
。因此,错误是因为代码无法搜索从 A1 开始的 G 列(第 7 列)、P(第 14 列)等如果您尝试
设置位置 = .Columns(7 * y).Find(What:=ID, After:=.Cells(1, 7 * y), LookIn:=xlValues, LookAt:=xlWhole)
那么您的搜索将在同一列上保持内部一致
下一步是删除
Select
语句以获得更高效的代码。:)第 2 部分)
由于您在未激活工作表的情况下找到了
Postion
,因此您需要1) 激活 Position
2) 完全避免
Select
让 (2)
尝试替换
为
Range(Position.Offset(0, 2), Position.Offset(0, 2).End(xlToRight))。复制工作表("Sheet1").Range("A2").Offset(i, 2 + 4 * y)
Your key issue is that this
Find
line on Sheet2 is inconsistentThe code is iterating from 0 to 16 (which presumably should be 1 to 16) but your disconnect is the column you are searching for in
.Columns(7 * y)
is variable ie, 0, 7, 14 but you are attempting to start the search inA1
each time withAfter:=.Cells(1, 1)
. Hence the error as the code can't search column G (column 7), P (column 14) etc starting in A1If you try
Set Position = .Columns(7 * y).Find(What:=ID, After:=.Cells(1, 7 * y), LookIn:=xlValues, LookAt:=xlWhole)
then your search will be internally consistent on the same column
Next step is to work on remove the
Select
statements for more efficient code.:)Part 2)
As you have found
Postion
without activating the sheet you either need to1) Activate Position
2) Avoid
Select
altogetherLets go with (2)
Try replacing
with
Range(Position.Offset(0, 2), Position.Offset(0, 2).End(xlToRight)).Copy Sheets("Sheet1").Range("A2").Offset(i, 2 + 4 * y)