Row.ItemArrayの内容を”yyyy/MM/dd”に整形したい

おはようございます
UiPath Studio2024.10.5Community editionのユーザです。

Object型配列 DataRow { HasErrors=false, ItemArray=object[2] { “09/22/2024”, “00:01:45” }

をAdd DataRowアクティビティの列配列にRow.ItemArrayと記述し、

dt_4に行を追加すると、
09/22/2024,00:01:45
が追加されてしまいます。

2024/09/22,00:01:45
と追加したいが、どうすれば良いですか?
A conditional branch in a workflow checks the format of the "Date" column in a DataRow and then adds the DataRow to a DataTable named "dt_4" if the condition is met. (Captioned by AI)

以下の式いかがでしょうか?

CDate("09/22/2024").ToString("yyyy/MM/dd")

image