如何通过linqtoexcel从Excel电子表格的列中找到最大值?

时间:2019-04-09 22:44:17

标签: c# linq-to-excel

我想使用linqtoexcel查找excel列的最大值。

ColumnA ColumnB
   1       1
   2       4
   3       3

这将返回

“最大ColumnA为3” “最大ColumnB为4”

1 个答案:

答案 0 :(得分:0)

将您的工作簿列映射到POCO

add form hearder

然后使用LinqToExcel

public class WorkSheetClass
{
    public int ColumnA { get; set; }
    public int ColumnB { get; set; }
}