Thread
:
Need Macro Help
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student
external usenet poster
Posts: 11,058
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
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student