excel宏命令中,如何定位到另一个excel文件中内容相同的单元格
发布网友
发布时间:2022-02-26 05:10
我来回答
共1个回答
热心网友
时间:2022-02-26 06:39
亲,试试这个:
Public i As Long
Sub temp()
If ActiveSheet.Name = "Sheet1" Then
Dim f
Set f = Sheet2.Cells.Find(Sheet1.Range("B" & i + 2))
If f Is Nothing Then
MsgBox "没有找到!", vbOKOnly, "搜索结果"
Else
Sheet2.Activate
f.Select
End If
i = i + 1
Else
If ActiveSheet.Name = "Sheet2" Then
Sheet1.Activate
Sheet1.Range("B" & i + 2).Select
End If
End If
End Sub