...
- Import your fixed-width dataset through the application and begin wrangling.
The data should now look similar to the following:
D caption Fixed-width dataset after import
From the drop-down to the right of the column name, select Column Details.
In the Column Details panel, click the Patterns tab.
Click in the All Patterns area.
Info NOTE: Selecting a specific pattern token will generate suggestions for only that particular token.
Info NOTE: If the application has inferred that the dataset is fixed-width, then the All Patterns area is the only available selection. If the dataset is not inferred as fixed-width, you should see multiple categories of patterns.
- From the suggestion cards, click the Split one.
- Close the Column Details panel.
- In the Transform preview window, verify that the column splits look ok.
- If a column contains multiple columns of data, click Edit.
- Verify that you are splitting based on position numbers, which means that column splits are done based on the number of characters from the left side of each line.
Your recipe step might look similar to the following:
codesplit col: column1 positions:d- trans showNote true p03Value 7, 67, 117, 167, 217, 221, 239, 251, 253, 303, 315, 317, 329, 341, 391, 400, 512, 560, 610, 630, 650, 660 Type step p01Name Column to split p01Value column1 p02Name Option p02Value By positions p03Name Positions SearchTerm Split columns by positions - In the list of values for positions, insert a new position number for the column or columns that contain multiple columns of data.
- Verify your changes in the Transform Preview panel.
- Click Add.
- Verify that the columns are split correctly.
You can use the following step to remove the whitespace from each cell value.
coded- set col:* value:trim($col)hideNote true trans Type step p01Name Column p01Value * p02Name Formula p02Value TRIM($col) SearchTerm Edit column with formula - Click Add.