A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
A quick macro would serve you best here even if you decide not to retain it for future use.
Tap Alt+F11 and when the VBA opens, immediately use the pull-down menus to Insert, Module. Paste the following into the new pane titled something like BooK1 - Module1 (Code),
Sub mcr_Fix_Case()
Dim r As Range, s As String, c As Long
For Each r In Selection
s = vbNullString
For c = 1 To Len(r.Value)
s = s & IIf(Asc(Mid(r.Value, c, 1)) > 64 And _
Asc(Mid(r.Value, c, 1)) < 91, _
Chr(32), vbNullString) & Mid(r.Value, c, 1)
Next c
s = Trim(s)
r = Left(s, 1) & Right(LCase(s), Len(s) - 1)
Next r
End Sub
Tap Alt+Q to return to your worksheet. First select teh cells containing the run-on sentences then tap Alt+F8 to open the Macros dialog and Run the macro. It will convert every cell you selected from this,
IHaveSentencesThatAreAllRunTogetherAndEachNewWordIsACapitalLetter.
... to this,
I have sentences that are all run together and each new word is a capital letter.