B
bigjoec
Hello,
I'm working in Excel 2003 SP2, and I'm trying to replace all
references to named ranges used within my formulas within a workbook
with the underlying absolute cell references. I found a solution in
the archives of this newsgroup (
http://groups.google.com/group/micr...d1ee0076045/a0d6406155d03ccc#a0d6406155d03ccc
) , but I can't get it to work (neither the manual version nor the
macro version).
My only guess is that the behavior has of TransitionFormEntry has
changed in Excel 2003. If so, is anyone aware of any other solutions.
I found another solution as well ( http://www.vbaexpress.com/kb/getarticle.php?kb_id=675
) but it uses a textual find-and-replace on the names of the named
ranges, and that feels a little scary to me - I'd rather have
something I'm certain won't mess up the formulas.
Also, and this should probably be a separate request but I'll ask
anyway - does anyone have a method for removing "redundant" worksheet
references within all formulas in a workbook? E.g., if on the
worksheet named 'ThisSheet' I have the formula
B1 = 'ThisSheet'A1 * 2,
then I'm looking to remove the redundant 'ThisSheet' name and just
have the formula be
B1 = A1 * 2
Again, I'd rather not use textual find-and-replace, but I may be stuck
for this one.
I'm working in Excel 2003 SP2, and I'm trying to replace all
references to named ranges used within my formulas within a workbook
with the underlying absolute cell references. I found a solution in
the archives of this newsgroup (
http://groups.google.com/group/micr...d1ee0076045/a0d6406155d03ccc#a0d6406155d03ccc
) , but I can't get it to work (neither the manual version nor the
macro version).
My only guess is that the behavior has of TransitionFormEntry has
changed in Excel 2003. If so, is anyone aware of any other solutions.
I found another solution as well ( http://www.vbaexpress.com/kb/getarticle.php?kb_id=675
) but it uses a textual find-and-replace on the names of the named
ranges, and that feels a little scary to me - I'd rather have
something I'm certain won't mess up the formulas.
Also, and this should probably be a separate request but I'll ask
anyway - does anyone have a method for removing "redundant" worksheet
references within all formulas in a workbook? E.g., if on the
worksheet named 'ThisSheet' I have the formula
B1 = 'ThisSheet'A1 * 2,
then I'm looking to remove the redundant 'ThisSheet' name and just
have the formula be
B1 = A1 * 2
Again, I'd rather not use textual find-and-replace, but I may be stuck
for this one.