remove special character from the headers
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
Sshasnk
8 - Asteroid
‎12-06-2022
08:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have a dataset where I have to remove the special character from headers
Input:
Last_name | Account__Num | Purchase____detail | Buy_Detail | Long_detail | Equity____Detail |
ABC | 123 | 456 | 789 | 56 | 25 |
Output:
Last name | Account Num | Purchase detail | Buy Detail | Long detail | Equity Detail |
ABC | 123 | 456 | 789 | 56 | 25 |
Labels:
6 REPLIES 6
PanPP
Alteryx Alumni (Retired)
‎12-06-2022
08:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @Sshasnk
1) You can use the dynamic rename tool as shown below.
Formula: replacechar([_CurrentField_], " _ ", " ")
2) You can also use a select tool to rename columns.
Hope this helps, if it does please like this post and if it helps resolve your problem, mark it as a solution so other community members can see it. If you have any other questions, please let us know.
TimN
13 - Pulsar
‎12-06-2022
09:04 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
KrishnaChithrathil
11 - Bolide
‎12-06-2022
09:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
binuacs
21 - Polaris
‎12-07-2022
02:07 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Andrea_Shannon
5 - Atom
‎07-03-2024
08:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This is great, thanks!
flying008
15 - Aurora
‎07-04-2024
12:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
