Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Im trying to create a column that has only the data found in another column
that is between (). EX: cell G2: C6653FN (HP 15) INK, 2/PK, BLACK Output wanted: HP 15 what formula would find this? -- Thanks, Ty |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=TRIM(LEFT(SUBSTITUTE(MID(G2,FIND("(",G2)+1,255)," )",REPT(" ",255)),255)) If this post helps click Yes --------------- Jacob Skaria "Ty" wrote: Im trying to create a column that has only the data found in another column that is between (). EX: cell G2: C6653FN (HP 15) INK, 2/PK, BLACK Output wanted: HP 15 what formula would find this? -- Thanks, Ty |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try:
=MID(G2,FIND("(",G2)+1,FIND(")",G2)-FIND("(",G2)-1) -- hope to help, cm "Ty" wrote: Im trying to create a column that has only the data found in another column that is between (). EX: cell G2: C6653FN (HP 15) INK, 2/PK, BLACK Output wanted: HP 15 what formula would find this? -- Thanks, Ty |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=MID(G2,FIND("(",G2)+1,FIND(")",G2)-1-FIND("(",G2)) -- Biff Microsoft Excel MVP "Ty" wrote in message ... Im trying to create a column that has only the data found in another column that is between (). EX: cell G2: C6653FN (HP 15) INK, 2/PK, BLACK Output wanted: HP 15 what formula would find this? -- Thanks, Ty |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This worked, Thanks
-- Thanks, Ty "cm" wrote: try: =MID(G2,FIND("(",G2)+1,FIND(")",G2)-FIND("(",G2)-1) -- hope to help, cm "Ty" wrote: Im trying to create a column that has only the data found in another column that is between (). EX: cell G2: C6653FN (HP 15) INK, 2/PK, BLACK Output wanted: HP 15 what formula would find this? -- Thanks, Ty |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find and copy data from 2 worksheets | Excel Discussion (Misc queries) | |||
Find and copy data | Excel Worksheet Functions | |||
find last row and copy previous row data | Excel Worksheet Functions | |||
Find & Copy Data query | Excel Discussion (Misc queries) | |||
Can Excel Find and Copy a row of data? | Excel Worksheet Functions |