2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

データテーブルに、別データテーブル行を追記する(UiPath)

Posted at

方法1:「Invoke Method」を使う

例えば下図のような、
「データ1」の中から、「名前:佐藤」行だけを「データ2」と結合させ、これをoutputしたい場合…
ui7.JPG
下記のように設定すればOKです。
ui8.png

※ちなみに、「Invoke Method」の代わりに「Add Data Row」を使うとエラーになります。
これは、「AddDataRowできるRowは、無属性のRowだけである」という性質から生じるエラーであり、
今AddしようとしているRowは、"既にデータ1に属したRowである"ため、AddDataRowが使えない…という事らしいです。
ui9.png

方法2:DataRow→Object[]に変換させる

「Invoke Methodを使うのはちょっと…」という人は、
別の方がInvoke Methodを使わずに行追加させる方法をまとめていますので、こちら↓の記事を参照してください。
https://qiita.com/mh_ti_fu/items/f09c01ab54e04756ddf0

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?