Übertrag Daten ohne Format/Formel und in nächste Spalte
15.10.2024 08:42:03
chris58
Ich habe mir das u.a. Makro zusammengestoppelt, so wie ich es kann bzw. gleube zu können.
Nun stoße ich jedoch auf Widerstand. Ich möchte die Zellen ohne Format und Formel in die Spalte übertragen und dann noch jede weitere "Sicherung" in die darauffolgende Spalte. Also statt 26,4 in .................................. 26,5 & 26,6 usw.
Kann mir bitte da wer weiterhelfen. Meine VBA Kenntnisse sind eher bescheiden.
Danke für Eure Mühe
chris58
Sub Kopieren1()
With Sheets("Berechnung")
.Cells(16, 7).Copy Sheets("History").Cells(26, 4)
.Cells(19, 7).Copy Sheets("History").Cells(27, 4)
.Cells(18, 3).Copy Sheets("History").Cells(28, 4)
End With
With Sheets("History")
.Cells(13, 2).Copy Sheets("History").Cells(30, 4)
.Cells(14, 2).Copy Sheets("History").Cells(31, 4)
.Cells(15, 2).Copy Sheets("History").Cells(32, 4)
.Cells(16, 2).Copy Sheets("History").Cells(33, 4)
.Cells(19, 2).Copy Sheets("History").Cells(34, 4)
.Cells(20, 2).Copy Sheets("History").Cells(35, 4)
End With
End Sub
Anzeige