Forum Discussion

ecwaters's avatar
ecwaters
Copper Contributor
Mar 31, 2022

NEED HELP: How To Select All Values Greater than 0 with Find and Replace

I am having trouble using the find and replace tool. I am trying to select all values greater than 0 and replace them all with 1 to create a binary in a single column. I am working with a dataset of about 700 rows, so this should be an all encompassing command for finding all values greater than 0. 

8 Replies

  • SergeiBaklan's avatar
    SergeiBaklan
    Diamond Contributor

    ecwaters 

    As variant

    - enter 1 in any empty cell, Ctrl+C

    - apply filter to your range

    - Number filter -> Greater than 0

    - Ctrl+V

    - clean filter

  • ecwaters 

    Assuming your 700 values are in cells A1:A700. Then enter in cell B1 formula:

    =IF(A1>0,1,0)

    and copy this formula down to cell B700.

    Then copy range B1:B700 and paste only values.

    It's up to you if you want to delete range A1:A700.