Dears
I found String formula timestamp to add filename as below.
concat(formatdatetime(triggerBody()?['DateTimeReceived'],'yyyyMMddhhmm'),item()?['Name'])
As this timestamp is based on World STD time, I want to add 9 hours for Japan STD time.
addHours('<timestamp>', <hours>, '<format>'?)
Could you some one give me help to modify original concat for local Japan time (+9 hours) ?
Regards
Solved! Go to Solution.
Dears
I found solution by try and error.
concat(substring(formatDateTime(addHours(triggerBody()?['DateTimeReceived'],9)),0,16),item()?['Name'])
Regards
Dears
I found solution by try and error.
concat(substring(formatDateTime(addHours(triggerBody()?['DateTimeReceived'],9)),0,16),item()?['Name'])
Regards