DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Function saybak(x As Range) As String
Dim i As Long, say As Long
i = x.Row
Do While Cells(i, x.Column).Value = x.Value
say = say + 1
i = i - 1
If i < 1 Then Exit Do
Loop
saybak = x.Value & say
End Function
Function saybak(x As Range) As String
Dim i As Long, say As Long, deg As String
i = x.Row
deg = UCase(Replace(Replace(x.Value, "ı", "I"), "i", "İ"))
Do While UCase(Replace(Replace(Cells(i, x.Column).Value, "ı", "I"), "i", "İ")) = deg
say = say + 1
i = i - 1
If i < 1 Then Exit Do
Loop
saybak = x.Value & say
End Function