You are here:

Excel/excel extracting data from cell

Advertisement


Question
Hi,

I am trying to extract data from within a cell that contains a massive string.  For example, in cell A1 it might contain: "This is a sample of data within this cell"

I need to figure out how to extract parts of the string, such as just the word "sample" by searching through the cell A1.  The word sample would then be but into another cell such as C4.

Can you help at all?  I appreciate the effort and time you took to read this request.

Answer
TX

technically yes, you can do that

cell C4:
=Mid(A1,find("sample",A1),6)


But that seems meaningless to me since I am returning the same thing I searched for.  But you know what you want to do.  I tested the above with a 12,041 character string and it worked fine.

If you just want to test if the string contains sample, then display sample you could do

=if(countif(A1,"sample")>0,"sample","")

now if you wanted to key on sample and extract the next 10 characters after the end of sample

=MID(A1,FIND("sample",A1)+7,10)

that would display   "of data wi"

as an example.

If I didn't understand the question, then post a follow-up.

--
Regards,
Tom Ogilvy
About Excel
This topic answers questions related to Microsoft Excel spreadsheet (or workbook) stand-alone or Mircrosoft Office Excel including Excel 2003, Excel 2007, Office 2000, and Office XP. You can get Excel help on Excel formulas(or functions), Excell macros, charting in Excel, advanced features, and the general use of Excel. This does not provide a general Excel tutorial nor the basics of using a spreadsheet. It provides specific answers to using Microsoft Excel only. If you do not see your Excel question answered in this area then please ask an Excel question here

Excel

All Answers


Answers by Expert:


Ask Experts

Volunteer


Tom Ogilvy

Expertise

Selected as an Excel MVP by Microsoft since 1999. Answering Excel questions in Allexperts since its inception in 2001. Able to answer questions on almost all aspects of Excel's internal capabilities. If seeking a VBA solution, please specify that in your question itself so I give you the answer you want. [Excel has weak protection - if you are distributing an application, I don't answer questions on how to protect your project from your users.]

Experience

Extensive experience.

Education/Credentials
Master of Science (MS) degree Operations Research (ORSA)

Awards and Honors
Microsoft MVP in Excel.

©2012 About.com, a part of The New York Times Company. All rights reserved.