|
楼主 |
发表于 2020-3-1 11:20
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
单击公式所在单元格,光标就会自动定位到指定位置
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
myr = Range("J6:J65536").Find(What:="*", LookIn:=xlValues, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
If Target.Address = "$J$4" Then Cells(myr, 10).Select
If Target.Address = "$I$4" Then Target(2, 2).Select
End Sub
Public Sub ss()
MsgBox Range("J6:J11118").Find(What:="*", LookIn:=xlValues, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
End Sub
|
评分
-
1
查看全部评分
-
|