Hi
Is there a way to protect and hide cells with formula using VBA while editing other cells? Currently I am using this code which does not allow me to editing some of the cells.
Sub HideFormula()
Selection.Locked = True
Selection.FormulaHidden = True
ActiveSheet.Protect Password:="1234"...