gorby
(Noteworthy UiPath Forum contributer 2024)
1
おはようございます
UiPath Studio 2024.10.5Community editionのユーザです。
現状、dt_1の値が下記になっています。
[Date,"Status""〇""AVG TimeSpan"
09/22/2024,00:01:45
09/26/2024,00:01:18
]
代入文で下記に変更する方法を教えてください。
dt_1
[Date,"Status""""〇""""AVG TimeSpan"
2024/09/22,00:01:45
2024/09/26,00:01:18
]
Yoichi
(Yoichi)
2
以下で可能かと思います。
dt = dt.AsEnumerable.Select(Function(r) dt.Clone.LoadDataRow({CDate(r(0).ToString).ToString("yyyy/MM/dd"),r(1)},False)).CopyToDataTable()
system
(system)
Closed
3
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.