G
Guest
I want to give user access to modify formula through the user form. I am
taking formula from cell into the form by using:
txtH10 = Worksheets("c1").Cells(10, 8).FormulaLocal
After user's modification I want to reenter formula into the same cell. I am
trying to use:
Worksheets("SGE").Cells(10, 8).FormulaLocal = txtH10
Formula is entered but Excel does not see it as a formula. If I will go to
the cell manually, double click on it, and click on the green check it is
turning into formula and all is ok. But how to do it without this extra steps
? How to do it programatically ???
Thanks for help.
Tony
taking formula from cell into the form by using:
txtH10 = Worksheets("c1").Cells(10, 8).FormulaLocal
After user's modification I want to reenter formula into the same cell. I am
trying to use:
Worksheets("SGE").Cells(10, 8).FormulaLocal = txtH10
Formula is entered but Excel does not see it as a formula. If I will go to
the cell manually, double click on it, and click on the green check it is
turning into formula and all is ok. But how to do it without this extra steps
? How to do it programatically ???
Thanks for help.
Tony