SOLVED
Text to columns no delimiter
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
BillyL14
8 - Asteroid
‎09-26-2020
07:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi
I have a list of code that start with two letters and then between 8 and 10 numbers ie. GY783529082
I was trying to use the text to columns tool to separate the letters from the numbers but I am not really sure what to put in as the delimiter?
Thanks
Solved! Go to Solution.
4 REPLIES 4
17 - Castor
‎09-26-2020
07:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @BillyL14,
maybe use the formuła tool.
Left tool and substring tool should help you.
For substring use Substring([column],3,8) and for left tool left([column],2) and you should achieve same result.
ImadZidan
12 - Quasar
‎09-26-2020
07:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
22 - Nova
‎09-26-2020
07:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @BillyL14 ,
Use can use regex parse method for this
([[:alpha:]]{2})(.*)
Hope this help : )
If this helps please mark the post as solution.
‎09-26-2020
07:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
