I saw another thread, but coudln't follow it. So I thought I should re-post. I have data in a single column, single cells that needs to be sorted:
ID_NUMBERS_ALL
70000 (Household Income); 4 (Household Size); 4256 (State ID#); N (Female HOH); Y (Active Military)
Y (Active Military); 1 (Household Size); 334532 (State ID#); 56000 (Household Income); N (Female HOH)
Y (Active Military); 2 (Household Size); 35000 (Household Income); NA (State ID#); Y (Female HOH)
Needs to be sorted to (but in any order):
Y (Active Military); 4 (Household Size); 70000 (Household Income); 4256 (State ID#); N (Female HOH);
Y (Active Military); 1 (Household Size); 56000 (Household Income); 334532 (State ID#); N (Female HOH)
Y (Active Military); 2 (Household Size); 35000 (Household Income); NA (State ID#); Y (Female HOH)
Then I can split the columns to make the data sortable. I'm happy to split first, but can't find a way to move cells into the appropriate columns after I split.
Thank you for any help!
Bookmarks