あるデータテーブルの指定した列に、別のデータテーブルの列を追加したい

上記の画像のように、あるデータテーブルに別のデータテーブルの値を追加したいです。
追加されるデータテーブルはExcelにある為「範囲を読み込み」アクティビティーで変数「追加されるDt」に格納しました。

もう一方のデータはブラウザから一つ一つ取る必要がある為「テーブルを構築」して.htmファイルを一つずつ開きString型変数(「テスト1」「テスト2」「テスト3」)に格納後、変数「追加行」(Object型)に格納、列配列として追加していきデータテーブルを作成しました。

2つのデータテーブルを用意するところまでできましたが、その後テーブルをこちらの意図する形で加工する事が出来ません。1つ目の画像のように、追加する列データを3列目、4列目、10列目に追加するにはどうしたら良いでしょうか?つたない文章で申し訳ございませんが、ご助力頂けると助かります。

@house.of.nf.ssk

if you are asking about in add data row how to add to specific column then use below

{"","","Third","Fourth","","","","","","Ten"}

this will add data in the respective columns with other columns being empty

here you need to build a table with 10 columns

Hope this helps

if you want to add to already existing datatable then you need to loop through that table or lookup on that table with a unique column and get the row id and then use assign dt.Rows(LookedupID)("ColumnName") = "Value to be populated"

cheers

1 Like

OK! I understand !! & I Can!!Thank you♡

LastQuestion…(Sorry)

I want to delete many green info…Can you???

1 Like

@house.of.nf.ssk

That is because of the column type…you are writing the number as text…you can use format cells and try to format then as general on excel

Or

When you build or create a table create column types with number only instead of string

Cheers

OK!Solution!I was so happy♥︎

1 Like

@house.of.nf.ssk

Happy Automation :blush:

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.