DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub SonSozcuk()
Dim a, i As Long
For i = 1 To Cells(Rows.Count, "B").End(xlUp).Row
a = Split(Cells(i, "B"), " ")
If Not Cells(i, "B") = "" Then Cells(i, "C") = a(UBound(a))
Next i
End Sub
Sub SonSozcuk()
Dim a, hucre As Range
For Each hucre In Selection
a = Split(hucre, " ")
If Not hucre = "" Then hucre.Offset(0, 1) = a(UBound(a))
Next hucre
End Sub