DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub bosluk_doldur_1()
ss = Range("a65536").End(3).Row
For i = 2 To ss
If Cells(i, "c") <> "" Then
isim = Cells(i, "c").Text
End If
If Cells(i, "c") = "" Then
Cells(i, "c") = isim
End If
Next
End Sub
Sub bosluk_doldur_2()
ss = Range("a65536").End(3).Row
For i = 2 To ss
If Cells(i, "c") <> "" Then
isim = Cells(i, "c").Text
Cells(i, "f") = isim
End If
If Cells(i, "c") = "" Then
Cells(i, "f") = isim
End If
Next
End Sub