Thread: Need Macro Help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Need Macro Help

Sub ffixer()
Dim v As String
Set r = Range("A1")
v = r.Formula
n = Len(v) - 3
v2 = Replace(Left(v, n), "(", "")
r.Offset(1, 0).Formula = v2
End Sub
--
Gary''s Student - gsnu200721