Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assigned CSS (Adair, Kristen) Total:
Above is a value in a cell. How would I extract the name Adair, Kristen from it? Thanks Todd Huttenstine |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1)
-- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Todd Huttenstine" wrote in message ... Assigned CSS (Adair, Kristen) Total: Above is a value in a cell. How would I extract the name Adair, Kristen from it? Thanks Todd Huttenstine |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you
-----Original Message----- =MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1) -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Todd Huttenstine" wrote in message ... Assigned CSS (Adair, Kristen) Total: Above is a value in a cell. How would I extract the name Adair, Kristen from it? Thanks Todd Huttenstine . |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
=MID(LEFT(A1,FIND(")",A1)-1),FIND("(",A1)+1,255) where 255 is just a larger number than the largest number of characters to be returned. In article , "Todd Huttenstine" wrote: Assigned CSS (Adair, Kristen) Total: Above is a value in a cell. How would I extract the name Adair, Kristen from it? Thanks Todd Huttenstine |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Oops, hit send too early:
For a programming solution: sIn = Range("A1").Text sName = Mid(Left(sIn, InStr(sIn, ")") - 1), InStr(sIn, "(") + 1, 255) In article , "Todd Huttenstine" wrote: Assigned CSS (Adair, Kristen) Total: Above is a value in a cell. How would I extract the name Adair, Kristen from it? Thanks Todd Huttenstine |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text Extraction (parsing) | Excel Worksheet Functions | |||
Complex text extraction formula | Excel Worksheet Functions | |||
Help with Text import and data extraction | Excel Discussion (Misc queries) | |||
Text string extraction | Excel Worksheet Functions | |||
Complicated extraction of text | Excel Discussion (Misc queries) |