diff --git a/src/Luban.Job.Cfg/Source/DataSources/Excel/Sheet.cs b/src/Luban.Job.Cfg/Source/DataSources/Excel/Sheet.cs index a2c2536..44891f9 100644 --- a/src/Luban.Job.Cfg/Source/DataSources/Excel/Sheet.cs +++ b/src/Luban.Job.Cfg/Source/DataSources/Excel/Sheet.cs @@ -402,7 +402,7 @@ namespace Luban.Job.Cfg.DataSources.Excel var row = new List(); for (int j = 0; j < rows.Count; j++) { - row.Add(i < rows[i].Count ? rows[j][i] : new Cell(j + 1, i, null)); + row.Add(i < rows[j].Count ? rows[j][i] : new Cell(j + 1, i, null)); } this._rowColumns.Add(row); }