ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   pulling certain data out of a cell (https://www.excelbanter.com/excel-worksheet-functions/26086-pulling-certain-data-out-cell.html)

D richardson

pulling certain data out of a cell
 

I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible

JulieD

Hi

if your data is consistent with the example then you can use
=MID(A1,13,2)
or alternatively try
=MID(A1,FIND("l",A1,3)+1,2)
(with your data in A1)
--
Cheers
JulieD
check out www.hcts.net.au/tipsandtricks.htm
....well i'm working on it anyway
"D richardson" wrote in message
...

I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible





Hi
It depends on the criteria you are using and how similar the information is
to your example. TO get 73 from the cell content you posted you could use:
=MID(A2,13,2)
which start at the 13th character and returns the next 2

--
Andy.


"D richardson" wrote in message
...

I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible




Jason Morin

Try:

=SUBSTITUTE(RIGHT(A1,LEN(A1)-12),"lyrs","")*1

Assuming the format is always:

lyyyy-mm-ddl"age"lyrs

HTH
Jason
Atlanta, GA


"D richardson" wrote:


I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible


patrick

This works if all your data is the same length. =MID(A1,13,2). Start at 13th
character, return 2=73.
Good Luck
Pat

"D richardson" wrote:


I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible


D richardson


Thanks...Your right that worked assuming the length is always the same in
some instances the lyyyy-mm-ddl is missing and you are left with ll45lyrsl,
the lyrsl is a constant... is there a way to pull off from the right after
the 5 characters lyrsl.

"Jason Morin" wrote:

Try:

=SUBSTITUTE(RIGHT(A1,LEN(A1)-12),"lyrs","")*1

Assuming the format is always:

lyyyy-mm-ddl"age"lyrs

HTH
Jason
Atlanta, GA


"D richardson" wrote:


I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible


D richardson


Thanks, your second suggestion worked for me with a slight adjustment
changing the 3 to a 2. Thanks again.

"JulieD" wrote:

Hi

if your data is consistent with the example then you can use
=MID(A1,13,2)
or alternatively try
=MID(A1,FIND("l",A1,3)+1,2)
(with your data in A1)
--
Cheers
JulieD
check out www.hcts.net.au/tipsandtricks.htm
....well i'm working on it anyway
"D richardson" wrote in message
...

I have a cell that contains l1931-06-05l73lyrs
I want to be able to pull off just the 73, is this possible






All times are GMT +1. The time now is 12:36 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com