Left & Search

smartbhau

New Member
Joined
Aug 4, 2014
Messages
11
Hi Guys,

This is what my text looks like.

Example (2) PTY LTD (VIC)
Example (2) PTY LTD-STHN (VIC)
Example (2) PTY LTD-NTHN (QLD)
Example (2) PTY LTD-CNTRL (NSW)

I want to show data which is in front of second set of brackets - Example (2) PTY LTD

I am using formula =LEFT(A1,(SEARCH("(***)",A1,1)-1))

It is giving me result - Example

What am I doing wrong? is there any other way to do this?

Thanks
Mike
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
One way would be
Code:
LEFT(A1,FIND(CHAR(1),SUBSTITUTE(A1,"(",CHAR(1),2))-2)
 
Upvote 0
Thanks for the feedback.
It would be better to use following in case there is no space before the 2nd (
Code:
=TRIM(LEFT(A1,FIND(CHAR(1),SUBSTITUTE(A1,"(",CHAR(1),2))-1))
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

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