Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Basically I have all my data for each record contained in one cell, this
obviously is a no go. I need to pull data between two specific words: "Address" & "City" (as an example), but not any of the other data within the record. I've extracted all other data I needed already, I just can't seem to find the appropriate formulas to get what I need done. Does anyone have any suggestions? I'm very Excel literate, I've just never had any formal training, so anything you throw at me I'll figure out! Just need a lil guidence, thanx! :) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You need to post some examples of your data, so that we can see what
might be involved. It would also help if you could describe what you have done already to extract the other data (i.e. any formulae that you have used). Pete On Dec 9, 10:26*pm, D Reg <D wrote: Basically I have all my data for each record contained in one cell, this obviously is a no go. I need to pull data between two specific words: "Address" & "City" (as an example), but not any of the other data within the record. I've extracted all other data I needed already, I just can't seem to find the appropriate formulas to get what I need done. Does anyone have any suggestions? I'm very Excel literate, I've just never had any formal training, so anything you throw at me I'll figure out! Just need a lil guidence, thanx! :) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I agree 101% with what PeteUK asked for/said. But consider this possible
starting point: In A1 is the phrase: ralph's address should be here before the city name and this formula would extract the phrase ' should be here before the ' from it: =MID(A1,FIND("address",A1)+LEN("address"),FIND("ci ty",A1,FIND("address",A1))-FIND("address",A1)+LEN("address")) Obviously that's not very robust, since "address" and "city" are hard coded into the formula and I doubt that you're just looking to find a single address and/or city in your list. "D Reg" wrote: Basically I have all my data for each record contained in one cell, this obviously is a no go. I need to pull data between two specific words: "Address" & "City" (as an example), but not any of the other data within the record. I've extracted all other data I needed already, I just can't seem to find the appropriate formulas to get what I need done. Does anyone have any suggestions? I'm very Excel literate, I've just never had any formal training, so anything you throw at me I'll figure out! Just need a lil guidence, thanx! :) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops, I missed a needed parenthesis, formula works better like this:
=MID(A1,FIND("address",A1)+LEN("address"),FIND("ci ty",A1,FIND("address",A1))-(FIND("address",A1)+LEN("address"))) "JLatham" wrote: I agree 101% with what PeteUK asked for/said. But consider this possible starting point: In A1 is the phrase: ralph's address should be here before the city name and this formula would extract the phrase ' should be here before the ' from it: =MID(A1,FIND("address",A1)+LEN("address"),FIND("ci ty",A1,FIND("address",A1))-FIND("address",A1)+LEN("address")) Obviously that's not very robust, since "address" and "city" are hard coded into the formula and I doubt that you're just looking to find a single address and/or city in your list. "D Reg" wrote: Basically I have all my data for each record contained in one cell, this obviously is a no go. I need to pull data between two specific words: "Address" & "City" (as an example), but not any of the other data within the record. I've extracted all other data I needed already, I just can't seem to find the appropriate formulas to get what I need done. Does anyone have any suggestions? I'm very Excel literate, I've just never had any formal training, so anything you throw at me I'll figure out! Just need a lil guidence, thanx! :) |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extract data from a cell reference | Excel Discussion (Misc queries) | |||
HOW TO EXTRACT CELL REFERENCE AS TEXT FROM NAMED RANGE | Excel Worksheet Functions | |||
extract column or row reference | Excel Discussion (Misc queries) | |||
Extract Unique Values, Then Extract Again to Remove Suffixes | Excel Discussion (Misc queries) | |||
How do I extract a date as text not the 1900 reference number | Excel Discussion (Misc queries) |