To calculate the sum of a column in a DataTable use the DataTable.Compute method.
DataTable dt; ... int sumValue; sumValue = dt.Compute("Sum(TheSumColumn)", string.Empty);
Display the result in your Total Amount Label like so:
lblTotalAmount.Text = sumValue.ToString();