weitomtom

New Member
Joined
Jul 19, 2018
Messages
2
HI Master.

I am wondering how to trim a row and remove part of a cell's information

My two queries below.

Query 1

Before After

Customer Customer
ABCD (1234) ABCD
AAAAAAA (321) AAAAAAA

xxxxxxxxxxxxxxxxxxxxxxxx

Query 2

Before After

Customer Customer
ABCD (1234) 1234
AAAAAAA (321) 321

Thanks in advance.
Tom
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Query 1

Before

Customer
ABCD (1234)
AAAAAAA (321)

After
Customer
ABCD
AAAAAAA


Query 2

Before

Customer
ABCD (1234)
AAAAAAA (321)

After
Customer
1234
321
 
Upvote 0
Try

Query 1
=LEFT(A1,SEARCH(" ",A1)-1)

Query 2
=SUBSTITUTE(RIGHT(A4,LEN(A4)-SEARCH("(",A4)),")","")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,588
Messages
6,125,692
Members
449,250
Latest member
azur3

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