Hi Can you help me with this one?
I want to remove the leading digits of a character in a column.
From this:
Period |
001 |
1207 |
1208 |
To this:
Period |
01 |
07 |
08 |
I would like to retain the last two digits of a column.
Thank you 🙂
Solved! Go to Solution.
Hi @dunkindonut7777,
The only thing that you need to remember is that your data type needs to be a string. If it wouldn't be a string you would need to use something like this:
Right(tostring([Period]), 2)
Thanks for the solution!
Great spot! Thanks!