Question

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

Was it helpful?

Solution

try to use

someVariable = Range("A1").Text

instead

someVariable = Range("A1").Value

you can read more here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top