Be sure to review our Idea Submission Guidelines for more information!
Submission GuidelinesIt would be great if there was a way for the Text to Columns tool did not drop the last empty when using Split to Rows.
For example, if I had the data:
RecordID | String |
1 | 1,2,3 |
2 | 1,2, |
3 | 1,, |
Notice that each value has two commas (representing three values per cell), and If I configure to split into rows on the comma character, what would you expect the result to be:
Result A:
RecordID | String |
1 | 1 |
1 | 2 |
1 | 3 |
2 | 1 |
2 | 2 |
3 | 1 |
3 |
OR
Result B:
RecordID | String |
1 | 1 |
1 | 2 |
1 | 3 |
2 | 1 |
2 | 2 |
2 | |
3 | 1 |
3 | |
3 |
OR
Result C:
RecordID | String |
1 | 1 |
1 | 2 |
1 | 3 |
2 | 1 |
2 | 2 |
3 | 1 |
I would expect Result C if I selected "Skip Empty Fileds", and that is what happens if I select that option.
But If I do not want to skip empty fields, I would expect Result B, but what I get is Result A where the last value/field is dropped/skipped.
What would it take to Result B as the output from the Text to Columns tool?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.