Hi,
On page 114 of "Mr. Excel On Excel," this macro is put forth as the way to instantly convert cells containing formulas to cells containing the results of those formulas:
This doesn't work with the most common situation I would like to use it in: the sum of two cells. That is, if the formula is =SUM(B1+B2), running the macro returns "Run-time error '438': Object doesn't support this property or method."
What's up with that?
Thanks...
On page 114 of "Mr. Excel On Excel," this macro is put forth as the way to instantly convert cells containing formulas to cells containing the results of those formulas:
Code:
Selection.Formulas = Selection.Value
This doesn't work with the most common situation I would like to use it in: the sum of two cells. That is, if the formula is =SUM(B1+B2), running the macro returns "Run-time error '438': Object doesn't support this property or method."
What's up with that?
Thanks...