ThisWorkbook.Worksheets(
"Tabelle1"
).Activate
Dim
intErsteLeereZeile
As
Long
With
ActiveWorkbook.Sheets(1)
intErsteLeereZeile = .Cells(Rows.Count, 1).
End
(xlUp).Row + 1
.Cells(intErsteLeereZeile, 1).Value = Kundendaten.txtDatum.Value
.Cells(intErsteLeereZeile, 2).Value = Kundendaten.txtKDNR
.Cells(intErsteLeereZeile, 3).Value = Kundendaten.txtNL.Value
.Cells(intErsteLeereZeile, 4).Value = Kundendaten.txtADM.Value
.Cells(intErsteLeereZeile, 5).Value = Kundendaten.txtKunde
.Cells(intErsteLeereZeile, 6).Value = Kundendaten.txtStrasse
.Cells(intErsteLeereZeile, 7).Value = Kundendaten.txtPLZ.Value
.Cells(intErsteLeereZeile, 8).Value = Kundendaten.txtOrt
.Cells(intErsteLeereZeile, 9).Value = Kundendaten.txtMaster
.Cells(intErsteLeereZeile, 10).Value = Answer
.Cells(intErsteLeereZeile, 11).Value = Application.UserName
End
With
Worksheets(
"Daten"
).Activate
Worksheets(
"Daten"
).Visible = xlSheetVisible
ThisWorkbook.Save