Forum Discussion
hmx876
Aug 26, 2023Copper Contributor
Extracting sentences from a cell
Hi. I have a cell full of sentences. I need to extract each sentence into new adjacent cells. Thank you.
- Aug 26, 2023
Does each sentence end in a full stop (point)? If so, you could use Data > Text to Columns, with . as delimiter.
If you have Microsoft 365, you can use a formula:
=TRIM(TEXTSPLIT(A1, "."))
HansVogelaar
Aug 26, 2023MVP
Does each sentence end in a full stop (point)? If so, you could use Data > Text to Columns, with . as delimiter.
If you have Microsoft 365, you can use a formula:
=TRIM(TEXTSPLIT(A1, "."))
SergeiBaklan
Aug 26, 2023Diamond Contributor
- HansVogelaarAug 26, 2023MVP
- SergeiBaklanAug 26, 2023Diamond Contributor
Yes, with space it's much better.
- muhammadwaseemAug 26, 2023Copper Contributori need help
- SergeiBaklanAug 26, 2023Diamond Contributor
Why don't you start new discussion here https://techcommunity.microsoft.com/t5/excel/bd-p/ExcelGeneral and explain what is your question.
- muhammadwaseemAug 26, 2023Copper ContributorI asked can you check