SOLVED
REMOVE LEADING ZERO IN THE DIGITS
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
dunkindonut7777
8 - Asteroid
‎10-13-2021
02:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi I would like to know the exact formula of removing the zero at the start of the digit.
Here I have:
Code: Expected Output:
001 01
002 02
003 03
011 11
012 12
Can you help me with this one pls?
Solved! Go to Solution.
Labels:
- Labels:
- Adobe
1 REPLY 1
22 - Nova
‎10-13-2021
02:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I would say use Right([Field], 2) Or REGEX_Replace([Field], "^00","0")
Hope this helps : )
