Hi All,
I was wondering if there is any way to have a number column always have lets say 3 numbers. So the first row would be 001 and the 20th 020.
Thanks for helping!
Hi All,
I was wondering if there is any way to have a number column always have lets say 3 numbers. So the first row would be 001 and the 20th 020.
Thanks for helping!
Hi @Remco_de_Louw
!
A Number column, I don’t so
(The supplementary “zeros” will be ignored)… But a Text Column in which you could use LeftPad() should work
.
It depends on how important the format of that column is
.
Ah thank you! I will try it out.
No problem
!
Just in case, here is a quick sample I should have shared earlier (
) but forgot to do so (
)
Formula in LeftPad - 1
thisTable.Find(thisRow).LeftPad(3,0)
Formula in LeftPad - 2
LeftPad(thisRow.[A Number],3,0)
Thanx it always helps to have a example!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.