Values from another workbook
I have two workbooks open. Workbook A and workbook B
Workbook B has some data in a column named as a range "rng_Data" (Variable
range : with Offset formula)
I want to access the same data in workbook A
Below is what i will do to get all the values of the range if it would have
been in the same workbook. What would i do to get the values of a range from
another workbook (which is open) ?
For Each c In Range(rng_Data)
str_Values = str_Values & ", " & c
Next
msgbox str_Values
--
Ajit
|