Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
let currently we are in week number 20 the format should be "00" only. if the week number is below "10" then u should be show like 2 digits.
For example now week number is 6 but i want like "06". and i want these change in front end textbox.
Please help me
Thanks In advance..
Regards,
Prabhas
Try this -> Num(Week, '00')
Num(YourExpression,'00')
Kind regards.
Another solution could be,
Right('0' & Week ,2)