View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Nils Titley Nils Titley is offline
external usenet poster
 
Posts: 84
Default Writing data to a new workbook


My msgbox only shows the time though the date is what is there.
"Jim Cone" wrote:


Something like...
Dim s as String
s = ActiveCell.Offset(0, 1).Address
WorkbookB.Worksheets("Sheet1").Range(s).Value = RunDate
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)




"Nils Titley"
wrote in message
I have two workbooks that I have open. WorkBook A has data in it. WorkBook
B is blank.

If I use this code, I can get the date from WorkBook A
Range("A2").Activate
RunDate = ActiveCell.Offset(0, 1).Value
MsgBox "Run Date " & RunDate

I can not figure out how to write the RunDate to the same location in
WorkBook B.

Another question, how to open a new Workbook with a file name or save it
with a file name.

Thank you.