1.datatable.compute("max(列名)","")

2.Column.Expression     =     "max(数据列名)";   

3.用视图来排序   
    Dim     firstView     As     DataView   
    Dim     maxvalue     as     string   
                            firstView     =     dt.DefaultView   
                            firstView.Sort     =     "数据列名     DESC"   
    maxvalue     =     firstView.Item(0).Item(0)   

4.tbl.Select("", "columnName Asc")(0)(columnName)

相关文章:

  • 2022-12-23
  • 2021-09-12
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-03
  • 2022-02-08
  • 2022-12-23
相关资源
相似解决方案