エクセルからエクセルへ転記

全くの初心者で、UiPathでエクセルを開くこと程度しかできません。

エクセルAのSheet1をエクセルBのSheet2へ転記したいです。
エクセルAの転記元はB~G列のデータが入力されているセルのみを、エクセルBのA5以降に転記したいです。
また、転記元に空白セルある行は転記しないようにできれば幸いです。

エクセルA、Bどちらも随時データ更新するので、繰り返しにて作成しなければいけないのでしょうか。

全く分からず申し訳ありませんが、参考例を作成していただけますでしょうか。
よろしくお願いいたします。

@noname-1

Welcome to the community

Use rad range activity with range as "B1" if your data starts from B1

Then if you need only till G …and if you have more columns use filter datatble activity to remove non required columns you can give column indexes starting from 0 to 5 to get 6 columns from B to G

And using same filter datatable you can filter the empty rows as well

Then use append ramge if you have more data after A5 and if data is to be pasted after last filled line or if data is to be pasted from A5 only then use write range with range as "A5"

Cheers

Cheers