インデックス番号0の行の確認

ヘッダを追加をCheckして、範囲を読み込みアクティビティでExcelファイルを開いたあと、
繰り返し(データテーブル各行)アクティビティで行単位で処理を回す際、
インデックス番号0の行とは、ヘッダ行を除く1行目であるとの認識で正しいでしょうか?

そうです。

エクセルのシートのヘッダー部が一行目に書かれていれば、二行目が、インデックスの0になります

@gorby

Yes , So index always starts from 0

So if have three columned datatable

Row(0).Tostring will get the value of first column

Regards
Sudharsan

Yes @gorby, The 1st row of the Excel sheet is considered as a Header and it is neglected while looping the Data table using the For each row Data table activity or conditions like DT.Row(0)(“ColumnName”).tostring.trim.