W Will Young Apr 7, 2004 #1 What is the best way to find the Max of a particular column in a DataSet?
C Cor Apr 7, 2004 #2 Hi Will, Not my favorite, however I thought that this could be done with Datatable.select with a properiate expression. http://msdn.microsoft.com/library/d...fsystemdatadatacolumnclassexpressiontopic.asp I hope this helps, Cor
Hi Will, Not my favorite, however I thought that this could be done with Datatable.select with a properiate expression. http://msdn.microsoft.com/library/d...fsystemdatadatacolumnclassexpressiontopic.asp I hope this helps, Cor
W Will Young Apr 8, 2004 #3 This seems to have worked: MaxNumber = ds.Tables(0).Compute("max(number)", "") .... Will
C Cor Ligthert Apr 8, 2004 #4 Hi Will, I was in doubt if I would give that also, however I thought you did want the row with the Max value. Cor
Hi Will, I was in doubt if I would give that also, however I thought you did want the row with the Max value. Cor