View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Michael Miazga[_2_] Michael Miazga[_2_] is offline
external usenet poster
 
Posts: 8
Default writing to a cell

I know this HAS to be simple, but I can't find the command anywhere, driving
me crazy. I'm just trying to write to a cell the current date. only in
mm/dd/yyyy format. something like this, but it isn't right:

With curWks
.Range("J31").Clear
.Range("J31").Bold = True
.Range("J31").Text (Date)
End with