Hi All,
Hope you all doing fine.
i need to create a new field with trailing 00's.
Please find attached
Can you please guide?
Thanks
Sri
Solved! Go to Solution.
Those would be leading zeros. Are you looking to just add two zeros in front or do you want to add a certain number of zeros to get to six digits? For the first, use "00" + [Field]. For the latter, use Padleft([Field],6,"0")
Thank you @binuacs . appreciate it.
Thank you @jdminton . Appreciate that.