I have the following set of data after download it from the web. The original data is supposed to be Type is "preference", Properties is "Create, Filter, Group, Nillable, Sort, Update" and Description is "ID".
TypereferencePropertiesCreate, Filter, Group, Nillable, Sort, UpdateDescriptionID
TypereferencePropertiesCreate, Filter, Group, Nillable, Sort, UpdateDescriptionID of the account associated with this opportunity.
TypecurrencyPropertiesCreate, Filter, Nillable, Sort, UpdateDescriptionEstimated total sale amount.
There are online tutorials to teach how to split string by using delimiter such as ", space, or other symbols" in spreadsheet but my set of data is different. How can I split "Type", "Properties" and "Description" out?
If there is not a delimiter string, (@Jeeped mentions a zero-width space), then you can use ordinary string functions, like
Mid
andInstr
to parse this out. I put the output on a new worksheet:Here is an alternate that puts it on the same worksheet (untested):