eganeyar

New Member
Joined
Feb 6, 2015
Messages
22
Hello,

Greetings!

May I ask for your assistance to help me get the data and remove all those after the numbers (symbol, letters, space, or any character).

Ex:

DataResult
+911111111 / abc@gmail.com+911111111
+911111111abc@gmail.com+911111111
+88888 abc@gmail.com+88888
+878787 +811111111+878787
+31312+811111111+31312

<tbody>
</tbody>
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Run this macro, your data must be in column A, the result will be in column B.
The format of column B must be Text.

Code:
Sub Ony_Number()
    For i = 1 To Range("A" & Rows.Count).End(xlUp).Row
        For j = 2 To Len(Cells(i, "A").Value)
            If InStr(1, "0123456789", Mid(Cells(i, "A"), j, 1)) = 0 Then
                Cells(i, "B").Value = Mid(Cells(i, "A").Value, 1, j - 1)
                Exit For
            End If
        Next
    Next
End Sub
 
Upvote 0
Thhank you DanteAmor! Can you also include in the Macro that if numbers only, without symbol or any character after the number, it will also show the same data. The current macro result is showing blank.

Example:

Data Result
8989999 8989999
 
Upvote 0
Hi eganeyar,

=MID(A2,MATCH(TRUE,ISNUMBER(1*MID(A2,ROW($1:$100),1)),0),COUNT(1*MID(A2,ROW($1:$100),1))) then before press enter you should CTRL+SHIFT+ENTER
 
Upvote 0
Here is another macro that you can try (as with Dante's code, Column B must be formatted as Text)...
Code:
[table="width: 500"]
[tr]
	[td]Sub FirstNumbersOnly()
  Dim R As Long, LeftSymbol As String
  For R = 2 To Cells(Rows.Count, "A").End(xlUp).Row
    LeftSymbol = Left(Cells(R, "A").Value, -(Cells(R, "A").Value Like "[!0-9]*"))
    Cells(R, "B").Value = LeftSymbol & Val(Replace(Cells(R, "A").Value, " ", "/"))
  Next
End Sub[/td]
[/tr]
[/table]
 
Last edited:
Upvote 0
Hi,

Formula option:


Book1
AB
5DataResult
6+911111111 / [email]abc@gmail.com[/email]911111111
7+911111111abc@gmail.com911111111
8+88888 [email]abc@gmail.com[/email]88888
9+878787 +811111111878787
10+31312+81111111131312
1189899998989999
Sheet572
Cell Formulas
RangeFormula
B6=-LOOKUP(1,-MID(A6,MIN(FIND({0,1,2,3,4}+{0;5},A6&1/17)),ROW($1:$99)))
 
Last edited:
Upvote 0
@[URL="https://www.mrexcel.com/forum/members/eganeyar.html"]eganeyar[/URL]


Code:
Sub Ony_Number()
    For i = 1 To Range("A" & Rows.Count).End(xlUp).Row
        Cells(i, "B").Value = Cells(i, "A").Value
        For j = 2 To Len(Cells(i, "A").Value)
            If InStr(1, "0123456789", Mid(Cells(i, "A"), j, 1)) = 0 Then
                Cells(i, "B").Value = Mid(Cells(i, "A").Value, 1, j - 1)
                Exit For
            End If
        Next
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,210
Members
448,554
Latest member
Gleisner2

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