Hi @YatinMumbai ,
There is no expression function for format numbers for leading zeros. Here are the steps you need to follow.
I will explain each step below.
First step is your input number (eg 23).
Next we need to construct a Do Until Loop where the length of input number match the total digit we want which is 6 in your case.
So in your case the initial length is 2 (length of 23) so that means the loop will execute 4 times to add the leading zeros.
To add the leading zeros we will use the flow Compose step.
Finally reassign the input number to compose output.
So it's starts with 023, 0023, 00023 and finally 000023 which is the result we want.

Here are my test results:

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up.
Thanks