Microsoft Excel 如何选择满足特定条件的所有单元格(即大于某个值)

Microsoft Excel 如何选择满足特定条件的所有单元格(即大于某个值)

我正在使用 Microsoft Excel 2013,我想选择包含大于某个值的所有单元格。我该怎么做?

我尝试使用“转到特别选项”,但它似乎只能选择具有某些属性的单元格,例如空白、具有公式或可见单元格。

我也发现了 Microsoft Excel 扩展,例如 Ablebits,但它需要付费,而且我更喜欢 Excel 的默认功能。

先感谢您。

答案1

一种方法是使用一个小宏来运行所有数据。

Sub clean()
Dim r As Range, i As Integer
Set r = Range("A1:AE150")
Application.ScreenUpdating = False
Do
    i = 0
    For Each cell In r
        If cell.Value >150000 Then
            cell.Delete Shift:=xlUp
            i = i + 1
        End If
    Next cell
Loop While i > 0
Application.ScreenUpdating = True
End Sub

警告
宏的操作无法撤消。运行前请务必保存以防止数据丢失。

请注意,如果存在表格涉及

相关内容