Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am using Excel 5. (Don't laugh). I am trying to set a variable in a module
in one workbook by referencing a cell in another workbook (that contains some data). How can I do this? I tried the following and it failed. Sub test() Dim j As Variant j = Evaluate("[temp.xls]sheet1!R23C4") End Sub this gives me an error 2015 Any help is appreciated. Thanks, Paul |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
how about just retrieving that value directly:
dim j as variant j = workbooks("temp.xls").worksheets("sheet1").range(" D23").value Paul Levy wrote: I am using Excel 5. (Don't laugh). I am trying to set a variable in a module in one workbook by referencing a cell in another workbook (that contains some data). How can I do this? I tried the following and it failed. Sub test() Dim j As Variant j = Evaluate("[temp.xls]sheet1!R23C4") End Sub this gives me an error 2015 Any help is appreciated. Thanks, Paul -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
reference to an external file | Excel Discussion (Misc queries) | |||
External xls reference error | Excel Worksheet Functions | |||
External reference not working? | Excel Discussion (Misc queries) | |||
External Reference | Excel Discussion (Misc queries) | |||
External reference as a condition | Excel Worksheet Functions |