如何设置一个查找,输入内容后只显示查找的那一行,或者凸显出那一行
发布网友
发布时间:2022-04-25 15:44
我来回答
共2个回答
热心网友
时间:2023-10-14 03:04
简单的VBA代码。
Sub 查找()
Dim str
str = VBA.InputBox("请输入你要查找内容")
If Not Cells.Find(str, lookat:=xlWhole, MatchCase:=True) Is Nothing Then
Cells.Interior.ColorIndex = 0
Cells.Find(str, lookat:=xlWhole, MatchCase:=True).EntireRow.Interior.ColorIndex = 6
Cells.Find(str, lookat:=xlWhole, MatchCase:=True).select
End If
End Sub
热心网友
时间:2023-10-14 03:05
这是一个标准筛选动作,刷黑第一行数据,点击工具栏的筛选键,将产生你要求的按钮。