object objSUM = this.yourds.Tables[0].Compute("SUM(yourcolumn)","");
object objAVG = this.yourds.Tables[0].Compute("AVG(yourcolumn)","");
object objMAX = this.yourds.Tables[0].Compute("MAX(yourcolumn)","");
object objMIN = this.yourds.Tables[0].Compute("MIN(yourcolumn)","");
decimal dSUM = Convert.ToDecimal("0"+objSUM .ToString());