Search code examples
excelvbavariablescellformatted

How to read formatted cell value data using excel vba?


What I'm trying to is read formatted cell value in excel 2007 using VBA.

For example I have a cell with value "01/01/2015" and when formatted it looks like Jan/2015. Is there a way to read that formatted value Jan/2015 into a variable instead of "01/01/2015"?

Thank you


Solution

  • try to use

    someVariable = Range("A1").Text
    

    instead

    someVariable = Range("A1").Value
    

    you can read more here