Hello
My flow creates a folder with the year and month and surname as the folder name. So if today is 11 December, the folder is labelled 2212 Test. But if it is January then the result is 221 Test.
I need it to be 2201 Test.
Can someone help me make sure the month is always 2 figures? Thanks in advance 🙂
Solved! Go to Solution.
The fix is to not use the int() and make them string variables. Your formatDateTime() will result in '01' as a string. That is what you want to concat. If you put it in an Int() it will convert the string '01' to the number 1.
The fix is to not use the int() and make them string variables. Your formatDateTime() will result in '01' as a string. That is what you want to concat. If you put it in an Int() it will convert the string '01' to the number 1.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Read the latest about new experiences and capabilities in the Power Automate product blog.
If you are a small business ISV/Reseller, share your thoughts with our research team.
User | Count |
---|---|
26 | |
25 | |
23 | |
23 | |
14 |
User | Count |
---|---|
46 | |
33 | |
32 | |
31 | |
30 |