A arishy Member Nov 4, 2013 #1 Code: Selection.value = "=TODAY()" Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues There must be a better way to "freeze" TODAY().......
Code: Selection.value = "=TODAY()" Selection.Copy Selection.PasteSpecial Paste:=xlPasteValues There must be a better way to "freeze" TODAY().......
Marc L Excel Ninja Nov 4, 2013 #2 Hi !How to use a worksheet function in VBA : Code: Selection.Value = Evaluate("TODAY()") But better in VBA : Code: Selection.Value = Date Like it !
Hi !How to use a worksheet function in VBA : Code: Selection.Value = Evaluate("TODAY()") But better in VBA : Code: Selection.Value = Date Like it !