View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chanon Chanon is offline
external usenet poster
 
Posts: 4
Default How to pass value in cell between workbooks ?

I'm tring to pass value in cell between workbooks for example : value in cell A1 of Book1.xls pass to cell B1 of Book2.xls
with code
workbooks(book1.xls").worksheets("sheet1").range(" A1").value = workbooks(book2.xls").worksheets("sheet1").range(" B1").value
or something like that but not success. Could anyone give me the answer please.