Excel Remove Numbers

ziad alsayed

Well-known Member
Joined
Jul 17, 2010
Messages
665
dear all

with the below data , how can i remove the numbers and keep the remaining
Excel Workbook
G
24111100024 1 FELPET NIG LTD
34111100073 1 CONCORD HOTEL
44111100541 1 OCEANIC BANK PLC
54111100681 1 RIVERS VEGETABLE OIL CO. LTD
64111100961 1 MONIPULO
74111101057 1 FRANCIS
84111101110 1 CEW NIG. LTD.
TopTen
Excel 2010

Appreciate any help
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hi,

If there is the same amount of numerics at the dtart, something simple like:

=RIGHT(A3, LEN(A3)-12)

Should do the job, adjust the "12" for the number of characters to remove:)


Cheers,
Ian
 
Upvote 0
Hi Ziad,

Put this formula in Cell"H2" (or wherever you want it:

Code:
=MID(G2,13,32767)

The assumption is that there are 13 spaces (numbers and spaces) before the data you want.

Good luck.

AMAS
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,831
Members
452,946
Latest member
JoseDavid

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