Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [A1:A10]) Is Nothing Then Exit Sub
On Error Resume Next
Application.EnableEvents = False
Target.Value = UCase(Replace(Replace(Target.Value, "ı", "I"), "i", "İ"))
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer, deg, deg2 As String
If Intersect(Target, [A1:A10]) Is Nothing Then Exit Sub
On Error Resume Next
Application.EnableEvents = False
Target.Value = WorksheetFunction.Proper(Target.Value)
deg = Split(Target.Value, " ")
For i = LBound(deg) To UBound(deg) - 1
deg2 = deg2 & " " & deg(i)
Next
Target.Value = deg2 & " " & UCase(Replace(Replace(deg(UBound(deg)), "ı", "I"), "i", "İ"))
Target.Value = Right(Target.Value, Len(Target.Value) - 1)
Application.EnableEvents = True
End Sub
BURDA İKİ MAKRO VAR BİRNCİSİ BÜÜYK HARF YAPIYOR İKİNCİSİ İSİMLERİ KÜÇÜK SOYİSİMLERİ BÜYÜK YAPIYOR
YAPMAK İSTEDİĞİM İKİSİNİ BİRLEŞTİRİP A SÜTÜNUNA YAZDIKLARIMI BİRİNCİ MAKRO OLSUN B SÜTÜNUNA YAZDIKLARIMIDA İKİNCİ MAKRO İŞLEM GÖRSÜN
If Intersect(Target, [A1:A10]) Is Nothing Then Exit Sub
On Error Resume Next
Application.EnableEvents = False
Target.Value = UCase(Replace(Replace(Target.Value, "ı", "I"), "i", "İ"))
Application.EnableEvents = True
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer, deg, deg2 As String
If Intersect(Target, [A1:A10]) Is Nothing Then Exit Sub
On Error Resume Next
Application.EnableEvents = False
Target.Value = WorksheetFunction.Proper(Target.Value)
deg = Split(Target.Value, " ")
For i = LBound(deg) To UBound(deg) - 1
deg2 = deg2 & " " & deg(i)
Next
Target.Value = deg2 & " " & UCase(Replace(Replace(deg(UBound(deg)), "ı", "I"), "i", "İ"))
Target.Value = Right(Target.Value, Len(Target.Value) - 1)
Application.EnableEvents = True
End Sub
BURDA İKİ MAKRO VAR BİRNCİSİ BÜÜYK HARF YAPIYOR İKİNCİSİ İSİMLERİ KÜÇÜK SOYİSİMLERİ BÜYÜK YAPIYOR
YAPMAK İSTEDİĞİM İKİSİNİ BİRLEŞTİRİP A SÜTÜNUNA YAZDIKLARIMI BİRİNCİ MAKRO OLSUN B SÜTÜNUNA YAZDIKLARIMIDA İKİNCİ MAKRO İŞLEM GÖRSÜN
