• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Convert Today() to value

arishy

Member
Code:
Selection.value = "=TODAY()"
Selection.Copy
    Selection.PasteSpecial Paste:=xlPasteValues

There must be a better way to "freeze" TODAY().......
 
Hi !​
How to use a worksheet function in VBA :​
Code:
Selection.Value = Evaluate("TODAY()")
But better in VBA :​
Code:
Selection.Value = Date
Like it !​
 
Back
Top