Microsoft Excel how to select all cells that meet certain condition (i.e greater than a value)

Charas

I am using Microsoft Excel 2013, and I want to select all cells that contain the value that is greater than a value. How do I do this ?

I have tried using Go To Specials, but it seems it is only able to select cells that have certain property such as blanks, have formulas or visible cells.

I have also found Microsoft Excel extension such as Ablebits, but it needs to pay, and I prefer the default function from excel.

Thankyou in advance.

Christofer Weber

One way is to run through all the data with a small macro.

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

Warning
The actions of a macro cannot be undone. Always save before running it to prevent the loss of data.

Note that this macro will fail if there are Tables involved

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Is it possible to select all elements with an attribute value greater than a certain number?

From Dev

Is it possible to select all elements with an attribute value greater than a certain number?

From Dev

Select all columns greater than some value

From Dev

Select all columns greater than some value

From Dev

Select value of one column if a separate column does not meet a certain condition

From Dev

How to select cells greater than a value in a multi-index Pandas dataframe?

From Dev

Excel Highlight Cells Greater than

From Dev

the sum of cells that meet a greater than and less than criteria

From Dev

Excel: Select the cell to the left that is greater than/less than some value

From Dev

Select records having a time interval greater than a certain value in Teradata

From Java

How do I query for all dates greater than a certain date in SQL Server?

From Dev

How to select certain rows in Excel that meet logical criteria of A & B

From Dev

Java Not greater than certain value

From Dev

How do i select all rows that meet the value for a specific column in a specific row

From Dev

Excel : how to replace cells that contain a certain value by an empty cells

From Dev

How can I add all previous cells to a cell using a function in Microsoft Excel?

From Dev

How do I get all records where date is 6 months greater than today's date, using Microsoft SQL Server 2008?

From Dev

Can I select all cells from all worksheets in Excel?

From Dev

How to select where sum of fields is greater than a value in MongoDB

From Dev

Excel: count the number of cells in a column until their sum is greater than a set value

From Dev

Jquery if value is greater than a certain length

From Dev

Find pairs of cells that meet a condition then do something excel vba

From Dev

How can I select all parent rows with a foreign key child row older than a certain date?

From Dev

Excel: How can I search a string for a number greater than something?

From Dev

Remove all divs where child element contains text greater than certain value

From Dev

subset data.table keeping only elements greater than certain value applied to all columns

From Dev

In R: How do I set values that meet a certain criteria to a certain value

From Dev

Excel VBA How to replace each cells containing numbers greater than zero

From Dev

How to count number of cells greater or less than 0 (zero) between two dates in Excel?

Related Related

  1. 1

    Is it possible to select all elements with an attribute value greater than a certain number?

  2. 2

    Is it possible to select all elements with an attribute value greater than a certain number?

  3. 3

    Select all columns greater than some value

  4. 4

    Select all columns greater than some value

  5. 5

    Select value of one column if a separate column does not meet a certain condition

  6. 6

    How to select cells greater than a value in a multi-index Pandas dataframe?

  7. 7

    Excel Highlight Cells Greater than

  8. 8

    the sum of cells that meet a greater than and less than criteria

  9. 9

    Excel: Select the cell to the left that is greater than/less than some value

  10. 10

    Select records having a time interval greater than a certain value in Teradata

  11. 11

    How do I query for all dates greater than a certain date in SQL Server?

  12. 12

    How to select certain rows in Excel that meet logical criteria of A & B

  13. 13

    Java Not greater than certain value

  14. 14

    How do i select all rows that meet the value for a specific column in a specific row

  15. 15

    Excel : how to replace cells that contain a certain value by an empty cells

  16. 16

    How can I add all previous cells to a cell using a function in Microsoft Excel?

  17. 17

    How do I get all records where date is 6 months greater than today's date, using Microsoft SQL Server 2008?

  18. 18

    Can I select all cells from all worksheets in Excel?

  19. 19

    How to select where sum of fields is greater than a value in MongoDB

  20. 20

    Excel: count the number of cells in a column until their sum is greater than a set value

  21. 21

    Jquery if value is greater than a certain length

  22. 22

    Find pairs of cells that meet a condition then do something excel vba

  23. 23

    How can I select all parent rows with a foreign key child row older than a certain date?

  24. 24

    Excel: How can I search a string for a number greater than something?

  25. 25

    Remove all divs where child element contains text greater than certain value

  26. 26

    subset data.table keeping only elements greater than certain value applied to all columns

  27. 27

    In R: How do I set values that meet a certain criteria to a certain value

  28. 28

    Excel VBA How to replace each cells containing numbers greater than zero

  29. 29

    How to count number of cells greater or less than 0 (zero) between two dates in Excel?

HotTag

Archive