Hi all,
I am working on a scenario regarding timestamps. Is there a function that turns number data types from, say 2 to 02? If it was a double digit number, this should stay constant.
For example:
2 → 02
7 → 07
14 → 14
125 → 125
6346 → 6346
9 → 09
Is there a function that allows this? I am also thinking there is a way to convert these numbers into text string, and then add the “0” if the number is < 10?