读取Excel的DataRows 或者 DataRow
访问对应的列:
Uipath:
#assign 所有行
myDataRows = dt.Rows.Cast(Of System.Data.DataRow).Where(Function(r) r("Item - KTL").ToString = "离职证明")
#write-line 拿出第一行的第一列的值
myDataRows(0).ItemArray(0).ToString
Powershell:
param(
[System.Data.DataRow]$myDataRow
)
# 下面两句输出结果一样
Write-Output $myDataRow.ItemArray[2].ToString();
Write-Output $myDataRow['Original / Supporting '].ToString();
访问的Excel:
PS:具体搜索