Question

Excel (not VBA): Cell contains this "Jill Tipping, 65.34695-2999-55565284000-6284" I need a combination of formulas (such...

Excel (not VBA): Cell contains this "Jill Tipping, 65.34695-2999-55565284000-6284" I need a combination of formulas (such as Ex. =mid or =left =right, etc to name a few) to extract the second word (Tipping) from the cell.

i have tried =MID(A2,FIND("^",SUBSTITUTE(A2," ","^",1))+1,FIND("^",SUBSTITUTE(A2," ","^",2))-FIND("^",SUBSTITUTE(A2," ","^",1))-1) but I get an error of "#value!"

0 0
Add a comment Improve this question Transcribed image text
Answer #1

-> it is correct, the formula to extract characters from a string in the cell.

=MID(A2,FIND("^",SUBSTITUTE(A2," ","^",1))+1,FIND("^",SUBSTITUTE(A2," ","^",2))-FIND("^",SUBSTITUTE(A2," ","^",1))-2)

-> mid() method used to extract characters from string. the syntax of mid() is :

mid(text,starting position,number of characters)

-> find() methos used to find the position of text from given text.itssyntax is shown below:

find(what has to be find,in which text)

-> substitute method substitutes the new text in place of old text.its syntax is :

substitute(text,oldtext,newtext)

-> in the given formula, substitute method replaces space character with "^" character in the text located cell A2.

->first find method ,finds the starting position required text in A2 .second find method , finds the ending position of text and 3rd find method finds again starting position.

-> To get required text ,it is needed to find number of characters , so that subtraction of ending position and starting position operation should be done.

-> finally got the required text ,i.e . Tipping . by formula

=MID(A2,FIND("^",SUBSTITUTE(A2," ","^",1))+1,FIND("^",SUBSTITUTE(A2," ","^",2))-FIND("^",SUBSTITUTE(A2," ","^",1))-2)

Add a comment
Know the answer?
Add Answer to:
Excel (not VBA): Cell contains this "Jill Tipping, 65.34695-2999-55565284000-6284" I need a combination of formulas (such...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Function Name: hahaYes Inputs: 1. 2. (char) The filename of an Excel file containing word counts ...

    using MATLAB Function Name: hahaYes Inputs: 1. 2. (char) The filename of an Excel file containing word counts from various works (cell) A 2xN cell array of words and how many times they occur in the unknown work Outputs: 1. (cell) A 1x3 vector of the closest matches to the unknown work Background You do not understand this reference Function Description: The Excel file that you are given contains data on how many times certain words appear in different works...

  • Please show cell references for Excel for this Cost of Goods Manufactured Schedule. Yes the answer...

    Please show cell references for Excel for this Cost of Goods Manufactured Schedule. Yes the answer is provided for reference, I need to know how the answers were determined using cell referencing in Excel. Save View Help Se Home Insert Page Layout Formulas Data Review 1 Co Online Pictures 3D Models - Shapes SmartArt able Recommended Table Pictures Pivot Tables Screenshot Tables illustrations Get Add-ins My Add-ins - Icons Add-ins fr BROOKS CORPORATION BROOKS CORPORATION Cost of Goods Manufactured Schedule...

  • IN EXCEL SO I CAN SEE THE FORMULAS USED. Open the Excel program Suppose we want...

    IN EXCEL SO I CAN SEE THE FORMULAS USED. Open the Excel program Suppose we want to know the standard normal distribution up to the given value. That is P(Z <a). Lets use Excel instead of the standard normal distribution table In cell A1 type mean. In cell B1 type 0. That means that we are letting mean be zero. click on cell A2 and type SD. In cell B2 type 1. That means that we are letting standard deviation...

  • ake some formulas to convert these into Excel date formats.

    The Forecast Dates sheet in the AD shell contains dates in the text format of “FY18Q2W1”.This means it is Fiscal Year 2018 (FY18), Quarter 2 (Q2), and Week 1 (W1).Make some formulas to convert these into Excel date formats. Your formulae should work for any date that I enter, even if it’s not in the provided list.That is, it should be able to berepeated. To simplify the problem, assume:•each quarter starts on the first of the first month of the...

  • Please provide excel formulas Stat 3309 - Statistical Analysis for Business Applications I Consider the following...

    Please provide excel formulas Stat 3309 - Statistical Analysis for Business Applications I Consider the following data representing the total time in hours) a student spent on reviewing for the Stat 3309 final exam and the actual score on the final. The sample of 10 students was taken from a class and the following answers were reported. time score 0 23 4 30 5 32 7 50 8 45 10 55 12 60 15 70 18 80 20 100 Part...

  • Hello, I need some help with some Excel formulas. a. Open Excel_Ch11HW.xlsx and save it as...

    Hello, I need some help with some Excel formulas. a. Open Excel_Ch11HW.xlsx and save it as Excel_Ch11HW_LastNameFirstName. b. Click cell H4, the cell containing the ending date for the first loan. Enter the formula to compute the ending date, based on the starting date and the term of the loan. For the sake of simplicity, you don’t have to account for leap year. To compute the ending date, multiply the term of the loan by 365 and add that result...

  • Use only the Excel functions (no calculator). I need to see all Excel formulas to give...

    Use only the Excel functions (no calculator). I need to see all Excel formulas to give you a full credit. 1. (Sheet #1) (10 points) Use the following categorical frequency distribution to answer each problem. Top Cell Phone Providers Verizon US Cellular T-Mobile Sprint Other AT&T Number of Students 271 87 206 177 35 224 a. (4 pts) Create a pie chart and pareto chart. b. (3 pts) Add two more columns: Relative Frequency (rf) and Cumulative Relative Frequency (ert)....

  • Use only the Excel functions (no calculator). I need to see all Excel formulas to give...

    Use only the Excel functions (no calculator). I need to see all Excel formulas to give you a full credit. Give answers to the 4th decimal place. 1. (Sheet #1) (10 points) Use the following categorical frequency distribution to answer each problem. a. (4 pts) Create a pie chart and pareto chart. b. (3 pts) Add two more columns: Relative Frequency (rf) and Cumulative Relative Frequency (crf). Calculate rf and crf. c. (1 pt.) Find a mean. d. (1 pt.)...

  • Hello I need a small fix in my program. I need to display the youngest student...

    Hello I need a small fix in my program. I need to display the youngest student and the average age of all of the students. It is not working Thanks. #include <iostream> #include <iomanip> #include <fstream> #include <vector> #include <algorithm> using namespace std; struct Student { string firstName; char middleName; string lastName; char collegeCode; int locCode; int seqCode; int age; }; struct sort_by_age { inline bool operator() (const Student& s1, const Student& s2) { return (s1.age < s2.age); // sort...

  • In need of the formulas that will be inputted into the excel sheet? Download the Applying...

    In need of the formulas that will be inputted into the excel sheet? Download the Applying Excel form and enter formulas in all cells that contain question marks. For example, in cell B26 enter the formula "B4-B8". that is not in the Review Problem. In this section, it is assumed that the traditional costing system allocates manufacturing overhead on the basis of Note that the worksheet contains a section at the bottom titled "Determine the Product Margin Under a Traditional...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT