How to TRIM away unwanted data from a cell

meppwc

Well-known Member
Joined
May 16, 2003
Messages
604
Office Version
  1. 365
Platform
  1. Windows
I have a column that, that if data exists, then I want to trim away everything except for a 7 digit number (if a 7 digit number exists)
The cells can contain, letters, numbers (other than 7 digits next to each other), or be blank

Is there any way to trim away everything except for the 7 digit number (if exists)?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Code:
Function GETCONSECUTIVE(val As Range, consec As Integer) As Variant

    Dim valTwo As String
    valTwo = val.Value
    Debug.Print Len(valTwo)
    For x = 1 To Len(valTwo)
    
        For y = 1 To consec
            If IsNumeric(Mid(valTwo, x, y)) Then
                GETCONSECUTIVE = GETCONSECUTIVE & Mid(valTwo, x, y)
            Else
                GoTo nope:
            End If
        Next y
        GETCONSECUTIVE = Mid(valTwo, x, consec)
        Exit Function
nope:
GETCONSECUTIVE = ""
    Next x


End Function

Here's a custom function. It will take a cell input, and then the number 7 (or any other length of value you want)
 
Upvote 0
I am lost how to use this custom function................the column with the data is CA...............where do I put this function and how would you use it?
 
Upvote 0
sorry..........I am really lost............I was able to create it..........and I can see it in User Defined functions.............but I don't know how and where to use it from there?+

Also, do I need to edit this function based on where the data resides (cell, row)
 
Last edited:
Upvote 0
meppwc,

Here is another UDF that is ok provided that the seven digit number is delimited by spaces?

Code:
Function SEVENUM(Strg As Range) As Variant
Arry = Split(Strg)
For c = 0 To UBound(Arry)
If IsNumeric(val(Arry(c))) And Len(Arry(c)) = 7 Then
SEVENUM = Arry(c)
Exit For
End If
Next c
End Function

Use either UDF themas you would a standard function e.g...

Excel 2007
CACB
1abc 1234567 df 3461234567
2abc 1234567 df 3451234567
Sheet2
Cell Formulas
RangeFormula
CB1=SEVENUM(CA1)
CB2=GETCONSECUTIVE(CA2,7)
 
Last edited:
Upvote 0
unfortunately it is not delimited..............it may have letters or symbols directly in front of the number
 
Upvote 0
No probs....
If you are ok to create the 'trimmed' listing in a secondary column as we have assumed then NRS has given you the solution you need.
 
Upvote 0
Hi Tony................I believe the solution from NRS is what I need, and I have been able to create/save the function in the editor...............but now I just don't know how to use it................my data is in column CA, and I am trying to add the function to column CB...........=Module1.GETCONSECUTIVE(), but it returns #VALUE!. If I add CA5 between the training brackets............=Module1.GETCONSECUTIVE(CA5), CB5 is still returning #VALUE!.........so I am lost
 
Upvote 0
nevemind..............DUH..................what an idiot I am..................this worked............Module2.GETCONSECUTIVE(CA5,7)
So sorry for being such an idiot...............thank for all the help
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,974
Members
448,934
Latest member
audette89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top