Hallo zusammen,
könnte man den unten ausgeführten Befehl in eine Schleife zusammenfassen? Hier geht es um einen Befehl in einer Eingabemaske. Die Stunden sollen durch die Projekte (24) geteilt werden und dann nacheinander mit (0,5,0,2,7,6,3,1 entspricht 24) multipliziert werden. Im Endeffekt prozentual aufgeteilt werden.
Private Sub cmdEingabe_Click()
'Fügt die eingetragenen Werte ins Tabellenblatt ein und schließt das Formular Eingabemaske
Dim intErsteLeereZeile As Long
intErsteLeereZeile = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row + 1
ActiveSheet.Cells(intErsteLeereZeile, 1).Value = Me.txt1.Value
ActiveSheet.Cells(intErsteLeereZeile, 2).Value = Me.txt2.Value
ActiveSheet.Cells(intErsteLeereZeile, 3).Value = Me.txt3.Value
ActiveSheet.Cells(intErsteLeereZeile, 4).Value = Me.txt4.Value / 24 * 0
ActiveSheet.Cells(intErsteLeereZeile, 5).Value = Me.txt5.Value
ActiveSheet.Cells(intErsteLeereZeile, 6).Value = Me.txt6.Value
ActiveSheet.Cells(intErsteLeereZeile, 7).Value = Me.txt7.Value
intErsteLeereZeile = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row + 1
ActiveSheet.Cells(intErsteLeereZeile, 1).Value = Me.txt1.Value
ActiveSheet.Cells(intErsteLeereZeile, 2).Value = Me.txt2.Value
ActiveSheet.Cells(intErsteLeereZeile, 3).Value = Me.txt3.Value
ActiveSheet.Cells(intErsteLeereZeile, 4).Value = Me.txt4.Value / 24 * 5
ActiveSheet.Cells(intErsteLeereZeile, 5).Value = Me.txt5.Value
ActiveSheet.Cells(intErsteLeereZeile, 6).Value = Me.txt6.Value
ActiveSheet.Cells(intErsteLeereZeile, 7).Value = Me.txt7.Value
intErsteLeereZeile = ActiveSheet.Cells(Rows.Count, 1).End(xlUp).Row + 1
ActiveSheet.Cells(intErsteLeereZeile, 1).Value = Me.txt1.Value
ActiveSheet.Cells(intErsteLeereZeile, 2).Value = Me.txt2.Value
ActiveSheet.Cells(intErsteLeereZeile, 3).Value = Me.txt3.Value
ActiveSheet.Cells(intErsteLeereZeile, 4).Value = Me.txt4.Value / 24 * 0
ActiveSheet.Cells(intErsteLeereZeile, 5).Value = Me.txt5.Value
ActiveSheet.Cells(intErsteLeereZeile, 6).Value = Me.txt6.Value
ActiveSheet.Cells(intErsteLeereZeile, 7).Value = Me.txt7.Value .......
Unload Eingabemaske
End Sub
Schon mal super lieben Dank im Voraus.
Julian |