-1

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

jp0202
  • 13
  • 1
  • 3

1 Answers1

1

try to use

someVariable = Range("A1").Text

instead

someVariable = Range("A1").Value

you can read more here

Dmitry Pavliv
  • 34,126
  • 12
  • 75
  • 77