|
Text to columns DOES work great, but you need to have a delimiter that can be recognized, or use a fixed length (if the text you are separating is the same length in each record. If you opt to use a delimiter it can be just about any character, "space", "tab", "symbol"(?, %, !, $, etc). You can also parse the text into more than two columns, as long as it runs into a delimiter or enough characters for the fixed length option. You can optionally elect to overwrite data already in the columns to the right (where you want the parsed out text to end up), or just insert enough blank columns for the text you are parsing out.
Another handy thing about this function is that you can define each new column you create from this function as text or general, which in effect, will allow you to convert numbers into text and/or text into numbers for a whole column without having to recalculate each cell.
|