ローカルパネルでDataRow引数の値は編集できませんか

こんにちは。
UiPath Studio 2023.10.0 EnterPriseユーザです。

WFデバッグ中に、ブレークポイントで止めてローカルパネルでDataRow引数の値を編集しようとしたができませんでした。
もしかして、ローカルパネルでは変数や引数の値を編集できないのでしょうか?

こんにちは

ローカルパネルで編集可能な型はStringやInt32等の単純なもののみです。
それ以外で変更が必要な場合は、Immediateパネルをお使いください。

1 Like

@gorby,

This way you can update DataRow values at runtime.

CurrentRow(0)="updated text"

Here 0 is the index of column.

Thanks,
Ashok :slight_smile:

Thank you for your reply!
Does UiPath accept i_dr_TransactionItem(“Column1_name”) format intead of index?

@gorby,

Yes, it does support column name as well.

image

Thanks,
Ashok :slight_smile: