Extract sentence that begins with 1.

manoj18071965

Board Regular
Joined
Sep 16, 2011
Messages
65
I have multiple cells around 200 having each cell text like below. I need only information starting with 1. up till 1. ends (Example: 1.A mounti... ...in disalignment. )

Following description includes:
1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
2. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
What about the one that has "1" but no period after it?

Anyhow, assuming that's a typo and you meant to put the period....

=TRIM(MID(A1,FIND("1.",A1)+1,1000000))

Try that out.
 
Upvote 0
Thankyou, but only 1. text is required. Right now it is trimming text from 1. but showing rest of the data afterwards
 
Last edited:
Upvote 0
I have multiple cells around 200 having each cell text like below. I need only information starting with 1. up till 1. ends (Example: 1.A mounti... ...in disalignment. )

Following description includes:
1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
2. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.

Hi!

If I understand correctly what you want, then the Array Formula below can helps.

Use Ctrl+Shift+Enter and not just Enter to enter the formula:

=IFERROR(MID(MID(A1,FIND("1.",A1),8^9),1,SMALL(IFERROR(FIND(ROW($1:$99)-1&".",MID(A1,FIND("1.",A1),8^9)),8^9),2)-1),"")


ABC
11.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
2. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.
1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
2
32. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.
4
5
61. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.
1. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
7
81.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment. 1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
91. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
2.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
<strike></strike>
1. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
10
111.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
11. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
12
******************************************************************************************************************************************************************************

<tbody>
</tbody>


Markmzz
 
Upvote 0
Maybe,

B1, copied down :

=IF(LEFT(A1,2)="1.",LEFT(A1,FIND(".",A1,FIND(".",A1)+1)),"")

Regards
Bosco
 
Last edited:
Upvote 0
1.A mounting system for supporting on a dental endosseous implant having a longitudinal implant axis is in disalignment.
2. A mounting system as device in claim 1, further comprising a fastener means for fastening the transmucosal member to the implant.
3. A mounting system as defined in claim 2 wherein the fastener means is a fixation bolt for screwing.
4. A mounting system as defined in claim 1 further comprising a fastener means for fastening the transmucosal member.
5. A mounting system as defined in claim 1, wherein the mounting system.
1. Is that all in one cell?

2. Could you give us a few more examples of the sort of data you might have and the expected results?


If post #5 does what you want, then there is no need to answer the above questions, but this should also produce the same results:
=IF(LEFT(A1,2)="1.",LEFT(A1,FIND(".",A1,3)),"")
 
Last edited:
Upvote 0
Thanks Bosco, but if the cell content is not starting with 1. like shown in above example "Following description includes:" values are not displaying
 
Upvote 0
Yes the provided information is in 1 cell and there are multiple cells having different information in same numbering format (1. 2. 3. and so on). In some cases cell information is starting with 1. and in some cases it is starting with text and then followed by 1. 2. .....
 
Upvote 0
Yes the provided information is in 1 cell and there are multiple cells having different information in same numbering format (1. 2. 3. and so on). In some cases cell information is starting with 1. and in some cases it is starting with text and then followed by 1. 2. .....

Try,

B1, copied down :

=IFERROR(MID(A1,FIND("1.",A1),FIND(".",A1,FIND("1.",A1)+2)-FIND("1.",A1)+1),"")

Regards
Bosco
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,093
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top