Sub Credit()
Application.ScreenUpdating = False
On Error Resume Next
With Sheets("Ageing")
e_max = .Cells(.Rows.Count, "N").End(xlUp).Row
End With
With Sheets("Ageing")
.Range("BJ1") = "Credit"
For f = 2 To e_max
chk_f = Sheets("Ageing").Cells(f, 14)
Fcut = WorksheetFunction.Find("-", chk_f, 1)
.Cells(f, 14) = Left(chk_f, Fcut - 1)
.Cells(f, 62) = Mid(chk_f, Fcut + 1)
Dcut = WorksheetFunction.Find(" Days", .Cells(f, 62))
Next f
Application.ScreenUpdating = True
.Range("BJ1").Select
End With
ThisWorkbook.Save
End Sub