我正在阅读 C# 中的 Excel 文件。文件中有3张纸:
- 概括
- 用户
- 其他
我正在遍历摘要表的列。(下面的代码)
有一列:SummaryID
在每张纸中。
foreach (DataColumn dc in Summary.Columns)
{
foreach (DataRow dr in Summary.AsEnumerable())
{
//get column SummaryID for everyrow
//And then get all rows in Users sheet that match SummaryID
//And then get all rows in Others sheet that match SummaryID
}
}
我的问题是:对于摘要表 (SummaryID) 中的每一行,我想获取与 'Users' 和 'Others' 表中的 SummaryID 匹配的所有匹配行。
注意:该列SummaryID
存在于所有 3 个工作表中,并且是所有工作表中的第一列。