|
▼経理担当 さん:
▼Yuki さん:
横合いから失礼いたします。
useform1に
CommandButtonを1個
Labelを10個配置しました
Label1〜5に県名をきさいしました
Label6〜10は0を記入してます
下記のコードを書きました
ニュアンス的にはこのような感じなのでしょうか
Private Sub CommandButton1_Click()
Dim i, intLoop As Integer
For i = 6 To 10
Controls("Label" & i) = 0
Next i
intLoop = 1
Do While Cells(intLoop, "H") <> ""
intLoop = intLoop + 1
If Cells(intLoop, "H") = Label1 Then Label6 = Label6 + 1
If Cells(intLoop, "H") = Label2 Then Label7 = Label7 + 1
If Cells(intLoop, "H") = Label3 Then Label8 = Label8 + 1
If Cells(intLoop, "H") = Label4 Then Label9 = Label9 + 1
If Cells(intLoop, "H") = Label5 Then Label10 = Label10 + 1
Loop
End Sub
|
|