いつもお世話になっております。
今回、予めOrchestratorに作成したQueueにロボットでExcelファイルから値を格納しています。
その後格納した値を使用し請求書をunattended robotに作成させるプロセスを構築しています。
その際日付を格納すると、Excelファイルには
2019/10/21
のように表示されているのですがOrchestratoeのTransactionを確認すると
10/21/2019 00:00:00
のように表示されてしまい、請求書の日付にうまく入力できません。
原因、対処方法教えていただければ幸いです。
宜しくお願いいたします。
lakshman
(Ganta lakshman)
2
@uibigginer
Please change column Type to Date in excel file and then try once.
@lakshman
Thank you for your advice.
i did,but could not solve this problem.
1 Like
lakshman
(Ganta lakshman)
4
@uibigginer
Split the value based on space and then add it to queue. Then it will add date only.
excelDate.Split(" "c)(0) - It will give Date only and same pass it to Queue.
1 Like
micchu
5
日付を文字として入力したらいかがですか?
日付変数.ToString(“yyyy/MM/dd”)
system
(system)
Closed
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.