「M - F」などの文字列を「M」と「F」だけに分離しようとしています。そして、これらの新しい文字列を 2 つの異なるセルに入れます。Split メソッドを試しましたが、それでもいくつかのエラーが報告され、どうすればよいかわかりません。誰でも助けることができます。
Function Aprobace(apr As String) As String
Dim spt() As String
Dim i As Integer
If InStr(1, apr, " - ") < 1 Then
Aprobace = apr
Else
spt = Split(apr, " - ")
For i = 0 To Application.WorksheetFunction.CountA(spt)
ActiveCell.Value = spt(i).Value
ActiveCell.Offset(1, 0).Select
Next i
End If
End Function