Webよりデータを取り、Excelに記入するワークフローを作成したいです。
Webから表データで最初の行と最終行を取込まない設定はどのようにしたらよろしいでしょうか。
どこから行を取り込まない設定にすればいいのでしょうか。
@koyo.osanai
After extracting the data, you’ll have the DataTable variable containing the table data from the web.
Then set the process to remove the first and last rows
Assign activity:
filteredDataTable = originalDataTable.AsEnumerable().Skip(1).Take(originalDataTable.Rows.Count - 2).CopyToDataTable()
Hi @koyo.osanai
use the below in assign activity:
filteredDataTable = yourDataTable.AsEnumerable().Skip(1).Take(yourDataTable.Rows.Count - 2).CopyToDataTable()
Regards
