DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub SonHücre()
Dim SonKolon As Integer
SonKolon = Cells(ActiveCell.Row, 256).End(xlToLeft).Column + 1
Cells(ActiveCell.Row, SonKolon).Select
End Sub
Merhaba,
Fikir vermek açısından, bulunduğunuz satırda son hücreye gider.
Kod:Sub SonHücre() Dim SonKolon As Integer SonKolon = Cells(ActiveCell.Row, 256).End(xlToLeft).Column + 1 Cells(ActiveCell.Row, SonKolon).Select End Sub
Sub SonHücre()
Dim Satir As Long, SonKolon As Integer, Ekle As Integer
Ekle = 3
Satir = ActiveCell.Row
SonKolon = Cells(Satir, 256).End(xlToLeft).Column + 1
Range(Cells(Satir, SonKolon), Cells(Satir, SonKolon + Ekle - 1)).EntireColumn.Insert
End Sub
Sub GitAraBulYazOtur2()
Set s1 = Sheets("Goster"): Set s2 = Sheets("NotYaz")
sat = WorksheetFunction.Match(s1.Cells(1, "E"), s2.Range("H:H"), 0)
süt = s2.Cells(sat, 400).End(1).Column + 1
s2.Activate: s2.Cells(sat, süt + 1).Activate
s2.Cells(sat, süt) = Date
End Sub