DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Kelime_Ayir()
Dim RegEx As Object, RegMatchCollection As Object, RegMatch As Object
Dim Myrange As Range, C As Range, OutPutStr As String
Set RegEx = CreateObject("VBScript.regexp")
With RegEx
.Global = True
.Pattern = "[^0-9,]"
End With
Set Myrange = Range("A2:A10")
For Each C In Myrange
OutPutStr = ""
Set RegMatchCollection = RegEx.Execute(C.Value)
For Each RegMatch In RegMatchCollection
OutPutStr = OutPutStr & RegMatch
Next
C.Offset(0, 1) = UCase(OutPutStr)
Next
Set RegMatchCollection = Nothing
Set RegEx = Nothing
Set Myrange = Nothing
End Sub
üstadım,
formül yada excelde yerleşik fonksiyonla yapılabilir mi?