Dear fellows,
Every time an automation is operated, a file name typing and save process is included.
As you can see below screenshot, the file name for today is “0312”.
Tomorrow, it needs to be “0313”.
Can you advise for any methods ?
Dear fellows,
Every time an automation is operated, a file name typing and save process is included.
As you can see below screenshot, the file name for today is “0312”.
Tomorrow, it needs to be “0313”.
Can you advise for any methods ?
If you want like sequence way then
You need to store the last used number (e.g., “0312”) in Asset
Then use the Asset value,
after process use Set Asset activity to store next value like below
lastNumber = Int32.Parse(lastNumberString) + 1
newNumber = lastNumber.ToString(“0000”)
In Set Asset activity give newNumber
Regards,
Can this work ?
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.