0

行フィルターに基づいて列の平均を見つける方法を知りたいですか?

private void monthlyGridView_Click(object sender, EventArgs e)
{
   List<double> everyQuestion = new List<double>();

    for (int i = 5; i < monthlyGridView.Columns.Count; i++)
    {
        eachQuestion.Clear();
       for (int j = 0; j < monthlyGridView.Rows.Count - 2; j++)
       {
          //mReport is DataTable which return values
          string value = mReport.Rows[j][i].ToString();
          eachQuestion.Add(double.Parse(value));
       }
          string columnAverage = String.Format("{0:0.00}", eachQuestion.Average());
          monthlyGridView.Rows[monthlyGridView.Rows.Count - 1].Cells[i].Value = columnAverage;


    }
}

このコードは、フィルタリングされていないベースの平均のみを提供しますか?

4

1 に答える 1

0

この機能には、概要行のビルドを使用できます。詳細は こちら

于 2013-03-08T09:47:26.657 に答える