View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default How do you change the data type of a cell using VBA?

Sub text_it()
Range("A1").Value = Chr(39) & "February 2007"
End Sub

--
Gary''s Student - gsnu2007c