I have many cells with text strings that may contain 2, or more, blank spaces within that cells text. (I don't care about a blank space of 1). each cell may contain multiple instances of these blank spaces. There is no order to the blank spaces, so i need to find the blank spaces and insert a comma.
My end goal is to do a "text to columns" type of function to separate the individual strings of text.
so a cell A1 that contains:
would look like:
Maybe some combination of LEN and SUBSTITUTE?
My end goal is to do a "text to columns" type of function to separate the individual strings of text.
so a cell A1 that contains:
Code:
txt sometext text and number-98 20b)1 G 4.1.04.1.0.3 Sep-17 STUFF SW 1 Location GL morestuff year2020
would look like:
Code:
txt sometext,text and number-98,20b)1,G 4.1.04.1.0.3,Sep-17,STUFF,SW 1,Location,GL morestuff,year2020,
Maybe some combination of LEN and SUBSTITUTE?