DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub VeriGirisi()
Dim BosHucre As Long
If Range("A4").Value = "" Then
MsgBox "Lütfen 'İsim Soyisim' alanını doldurunuz."
Exit Sub
ElseIf Range("B4").Value = "" Then
MsgBox "Lütfen 'Borç' alanını doldurunuz."
Exit Sub
End If
BosHucre = Cells(Rows.Count, "F").End(3).Row + 1
Range("E" & BosHucre).Value = Range("A4").Value
Range("F" & BosHucre).Value = Range("B4").Value
Range("A4").Value = ""
Range("B4").Value = ""
End Sub
Sub GeriAl()
Dim SonHucre As Long
SonHucre = Cells(Rows.Count, "F").End(3).Row
Range("A4").Value = Range("E" & SonHucre).Value
Range("B4").Value = Range("F" & SonHucre).Value
Range("E" & SonHucre).Value = ""
Range("F" & SonHucre).Value = ""
End Sub