W
Walter Briscoe
I have a string variable containing a formula which I want to evaluate.
I can do what I want with
activeCell.FormulaLocal = fx
result = activeCell.Value
I want a function which evaluates result without writing to a cell.
i.e. I am looking for the name of a function which will do
result = name(fx) and return the value of fx.
fx might have a value like "=""prefix"" & A1 & ""suffix""".
I have failed to find such a function. ;(
I can do what I want with
activeCell.FormulaLocal = fx
result = activeCell.Value
I want a function which evaluates result without writing to a cell.
i.e. I am looking for the name of a function which will do
result = name(fx) and return the value of fx.
fx might have a value like "=""prefix"" & A1 & ""suffix""".
I have failed to find such a function. ;(