Hallo VBA Freunde,
Bin nach langer Zeit mal wieder mit einer Frage im Forum.
Bitte um Hilfe.
Mit Click in eine Zelle öffnet sich eine UserForm und anschließend
wird aus einer TextBox ein Wert in eine bestimmte Zelle addiert.
Click in I3, Wert in Cells (3, 8)-funzt-. Wenn ich jetzt I4 clicke soll der Wert in Cells (4, 8) usw. bis I22 Cells 22, 8).
Wie muss der Code aussehen damit dies funzt. Komme im Moment nicht weiter. (Excel 2000)
Hier mein Code:
Code Tabelle:
Private Sub Worksheet\_SelectionChange(ByVal Target As Range)
If Target.Address = "$I$3" Then
frmEingabePlus1.Show
End If
If Target.Address = "$I$4" Then
frmEingabePlus1.Show
End If
End Sub
Code UserForm:
Private Sub cmdPlusH3\_Click()
Dim temp As Double
On Error GoTo Err
temp = txtPlusH3.Text + Sheets("ZK 2011").Cells(3, 8).Value
Sheets("ZK 2011").Cells(3, 8).Value = temp
Unload Me
Exit Sub
Err:
MsgBox "Bitte eine Zahl eingeben"
End Sub
Mit Dank im Voraus.
Gruß Skaletti!