第8講 結果を報告する社員

第7話 成績一覧表のFunctionプロシージャによる改良第3弾

成績一覧表ソフト(参考ダウンロードファイル成績一覧表社員版
vba
のFunctionプロシージャによる改良第3弾解答例
Private Sub CommandButton1_Click()
  hyouji
  datesakusei
  Dim w As Integer, i As Byte
  For i = 0 To 4
    w = syori(i)
    Cells(47, 3 + i) = w
    Cells(48, 3 + i) = w / 40
    If w / 10 >= 50 Then
      Cells(49, 3 + i) = "合格"
    Else
      Cells(49, 3 + i) = "不合格"
    End If
  Next
  For i = 0 To 39
    w = hyouka(i)
    Cells(7 + i, 8) = w
    Cells(7 + i, 9) = w / 5
    If w / 5 >= 50 Then
      Cells(7 + i, 10) = "合格"
    Else
      Cells(7 + i, 10) = "不合格"
    End If
    If w / 5 >= 55 Then
      Cells(7 + i, 11) = "優秀"
    Else
      If w / 5 >= 50 Then
        Cells(7 + i, 11) = "普通"
      Else
        Cells(7 + i, 11) = "努力が必要"
      End If
    End If
    If w / 5 >= 60 Then
      Cells(7 + i, 12) = "天才級"
    Else
      If w / 5 >= 55 Then
        Cells(7 + i, 12) = "秀才級"
      Else
        If w / 5 >= 50 Then
          Cells(7 + i, 12) = "平凡"
        Else
          Cells(7 + i, 12) = "不出来"
        End If
      End If
    End If
    If w / 5 >= 65 Then
      Cells(7 + i, 13) = "神"
    Else
      If w / 5 >= 60 Then
        Cells(7 + i, 13) = "准超越者"
      Else
        If w / 5 >= 55 Then
          Cells(7 + i, 13) = "人間"
        Else
          If w / 5 >= 45 Then
            Cells(7 + i, 13) = "人造人間ベム・ベロ・ベラ級"
          Else
            Cells(7 + i, 13) = "ピノキオ以下の存在"
          End If
        End If
      End If
    End If
  Next
  sonota
End Sub
Private Sub CommandButton2_Click()
  Rows("6:200").Select
  Selection.ClearContents
  Cells(1, 1).Select
End Sub
Sub hyouji()
  Cells(6, 2) = "出席番号"
  Cells(6, 3) = "国語"
  Cells(6, 4) = "社会"
  Cells(6, 5) = "数学"
  Cells(6, 6) = "理科"
  Cells(6, 7) = "英語"
  Cells(6, 8) = "合計"
  Cells(6, 9) = "平均"
  Cells(6, 10) = "評価"
  Cells(6, 11) = "3段階評価"
  Cells(6, 12) = "4段階評価"
  Cells(6, 13) = "5段階評価"
End Sub
Sub datesakusei()
  Dim i As Byte
  For i = 0 To 39
    Cells(7 + i, 2) = i + 1
    For j = 0 To 4
      Cells(7 + i, 3 + j) = Int(100 * Rnd())
    Next
  Next
End Sub
Function syori(i As Byte)
   Dim j As Byte
   For j = 0 To 39
    syori = syori + Cells(7 + j, 3 + i)
   Next
End Function
Function hyouka(i As Byte)
   Dim j As Byte, w As Integer
   hyouka = 0
   For j = 0 To 4
      hyouka = hyouka + Cells(7 + i, 3 + j)
   Next
End Function
Sub sonota()
  Cells(47, 8) = yokogoukei()
  Cells(48, 8) = yokogoukei() / 40
  Cells(47, 9) = tategoukei
  Cells(48, 9) = tategoukei / 10
  Cells(47, 2) = "合計"
  Cells(48, 2) = "平均"
  Cells(49, 2) = "評価"
End Sub
Function yokogoukei()
  Dim i As Byte
  yokogoukei = 0
  For i = 1 To 10
    yokougoukei = yokogoukei + Cells(6 + i, 8)
  Next
End Function
Function tategoukei()
  tategoukei = 0
  For i = 1 To 39
    tategoukei = tategoukei + Cells(6 + i, 9)
  Next
End Function
参考ダウンロードファイル成績一覧表社員完成版


これで結果を報告する社員の講は終了します。
次講では、社員が自分に命令するプログラム
(プロシージャの再帰的使用)について学習します。


第6話へ 第9講第1話へ

トップ

vc++講義へ

初心者のための世界で一番わかりやすいVisual C++入門基礎講座
初心者のための世界で一番わかりやすいVisual Basic入門基礎講座へ
vb講義へ
VB講義基礎へ
初心者のためのJava 入門 基礎から応用まで
数学研究室に戻る