DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub kod()
Application.ScreenUpdating = False
sat1 = 9
sat2 = 9
For i = 2 To 6
Cells(sat1, "A") = WorksheetFunction.Substitute(Cells(i, "A"), ",", "_")
sat1 = sat1 + 1
If Cells(i, "C") <> "" Then
If Cells(i, "C") Like "*/*" Then
a = Len(Cells(i, "C")) - Len(WorksheetFunction.Substitute(Cells(i, "C"), "/", ""))
For s = 0 To a
Cells(sat2, "C") = Split(Cells(i, "C"), "/")(s)
sat2 = sat2 + 1
Next s
End If
End If
Next i
Application.ScreenUpdating = True
MsgBox "B i t t i "
End Sub