Need excel function to filter alpha characters

11,655

Solution 1

You can use the Advanced Filter with a Formula for a criteria

The formula must return TRUE or FALSE. This returns TRUE if there are no digits within the word:

Formula:  =MIN(FIND({0;1;2;3;4;5;6;7;8;9},A6&"0123456789"))>LEN(A6)

Setup

enter image description here

Results

enter image description here

You could also use a simple filter:

  • Enter the above formula in B6
  • Fill down as far as needed
  • Filter on the Contents = TRUE

Solution 2

A simple way is to use =ISTEXT(somevalue) in a new column and filter for true.
You can do the same with =ISNUMBER, =ISBLANK, etc.

Example:

istext1

istext2

Share:
11,655

Related videos on Youtube

Manikandan r
Author by

Manikandan r

Updated on September 18, 2022

Comments

  • Manikandan r
    Manikandan r almost 2 years

    I have a column in excel file which is mix of set alphanumeric,number and alpha character , I want to filter out alpha character only. Need advise..

    Column 1

    100054
    Mk1568
    Un10008
    Dngh
    34677
    Gopro
    
    • Admin
      Admin over 7 years
      What have you tried? Where did that get you? You've given your input data but what is your expected output?
    • Admin
      Admin over 7 years
      I need to filter out only alpha character. outputs-dngh gopro
    • Admin
      Admin over 7 years
      I used below. =ISNUMBER(SUMPRODUCT(SEARCH(MID(A1,ROW(INDIRECT("1:"&LEN(A1)‌​)),1),"0123456789abc‌​defghijklmnopqrstuvw‌​xyzABCDEFGHIJKLMNOPQ‌​RSTUVWXYZ")))
    • Admin
      Admin over 7 years
      What is the exact issue with your formula?
  • Rajesh Sinha
    Rajesh Sinha about 7 years
    To use the Function to filter String,, =ExtractLetters (string to Xtract) ☺
  • Rajesh Sinha
    Rajesh Sinha about 7 years
    I'm new to the Super User, could you please tell me the reason behind my code is been edited.
  • Ramhound
    Ramhound about 7 years
    The code was not formatted. The alternative, to improving the answer, is to delete an unformatted answer.