比如传入参数是currentRowofAction1, Action2 中这样写。
if currentRowofAction1 =1
startRow=1
endRow=2
else if currentRowofAction2 = 2
startRow=3
endRow=5
....
End if
for i = startRow to endRow
DataTable.GetSheet("Sheet2").SetCurrentRow(i)
.....(Action2的全部处理代码)
next