Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
what Im trying to achieve:
Column L lists file names including path eg c:\rds\incomplete\filename.xls (the filenames will be variable, ie they will change regularly, so to the amount of filesnames in the list, usually between 1 and about 20 can be listed at any given time) Column A needs to retreive information from a cell (example sheet1!B6) on the closed workbook listed in column L Would like to call a function the will populate column A automatically.... tia steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Open them, extract the data and close them
Set thisWb = Activeworkbook.Activesheet Workbooks.Open Filename:=(Range("L1").Value thsWb.Range("A1").Value = Activeworkbook.Activesheet.Range("B6").Value ACtiveworkbook.Close etc for each book -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Steve" wrote in message ... what Im trying to achieve: Column L lists file names including path eg c:\rds\incomplete\filename.xls (the filenames will be variable, ie they will change regularly, so to the amount of filesnames in the list, usually between 1 and about 20 can be listed at any given time) Column A needs to retreive information from a cell (example sheet1!B6) on the closed workbook listed in column L Would like to call a function the will populate column A automatically.... tia steve |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Steve,
Have a look at http://j-walk.com/ss/excel/tips/tip82.htm Reijo -----Original Message----- what Im trying to achieve: Column L lists file names including path eg c:\rds\incomplete\filename.xls (the filenames will be variable, ie they will change regularly, so to the amount of filesnames in the list, usually between 1 and about 20 can be listed at any given time) Column A needs to retreive information from a cell (example sheet1!B6) on the closed workbook listed in column L Would like to call a function the will populate column A automatically.... tia steve . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup last used Row un closed Workbook | Excel Worksheet Functions | |||
Moving Sheet to Closed Workbook | Excel Discussion (Misc queries) | |||
Consolidation of data from cell in active sheet of closed workbook | Excel Worksheet Functions | |||
Lookup function Closed files Excel | Excel Worksheet Functions | |||
Lookup cell contents in on sheet based on a formula in second sheet | Excel Worksheet Functions |