Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 103
Default How to get text which is inside the brackets in excel sheet

Hi all,

I am having field values like below,

xyz(xxx)
abc(rrrr)
pqr(as)

my need is to get string which is inside the bracket.
xxx
rrrr
as

How can i get this values, plz help me on this regard

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default How to get text which is inside the brackets in excel sheet

=SUBSTITUTE(MID(A1,SEARCH("(",A1,1)+1,100),")","")
--
If this post helps click Yes
---------------
Jacob Skaria


"arun" wrote:

Hi all,

I am having field values like below,

xyz(xxx)
abc(rrrr)
pqr(as)

my need is to get string which is inside the bracket.
xxx
rrrr
as

How can i get this values, plz help me on this regard

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default How to get text which is inside the brackets in excel sheet

=MID(A1,FIND("(",A1)+1,LEN(A1)-FIND("(",A1)-1) if it always ends with the
closing parenthesis, or
=MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1)
--
David Biddulph

"arun" wrote in message
...
Hi all,

I am having field values like below,

xyz(xxx)
abc(rrrr)
pqr(as)

my need is to get string which is inside the bracket.
xxx
rrrr
as

How can i get this values, plz help me on this regard



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to enter text inside the bars on a bar chart in Excel? sheepdog Charts and Charting in Excel 3 April 4th 23 10:45 AM
Display external data inside of an Excel 2007 Spread sheet jingles457 Excel Worksheet Functions 2 November 15th 07 04:36 PM
inserting scrollbar inside an Excel Sheet Genesis[_2_] Excel Discussion (Misc queries) 3 October 23rd 07 05:35 AM
VLOOKUP used with Access DB inside of Excel Sheet Michael Kintner Excel Discussion (Misc queries) 1 February 6th 07 08:44 PM
While rotating object, how to rotate the text inside - in excel A.Mohandas Excel Discussion (Misc queries) 1 April 23rd 06 12:03 AM


All times are GMT +1. The time now is 04:54 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"