Borrar filtros
Borrar filtros

getting excel variable in a loop

3 visualizaciones (últimos 30 días)
wesso Dadoyan
wesso Dadoyan el 27 de Jun. de 2016
Editada: Walter Roberson el 29 de Jun. de 2016
Folder=pwd;
d = dir('bhcf*.xlsx');
N_File=numel(d);
e = actxserver ('Excel.Application');
h=waitbar(0,'Progress...');
for o = 1:N_File
waitbar(o/N_File,h);
ExcelWorkbook = e.workbooks.Open(fullfile(Folder,d(o).name));
there is a column called BHCK5481 in each of these excel files where the sheet is called Sheet1. How can I download it? I tried Sheet=ExcelWorkbook.Sheet1.item('BHCK5481'); but it didn't work Any help is appreciated
  3 comentarios
Image Analyst
Image Analyst el 27 de Jun. de 2016
I guess you have a "named range" in each workbook and that range is named BHCK5481. Is that correct? And that range might be in any column, not some fixed column like column #3. Is that correct?
wesso Dadoyan
wesso Dadoyan el 29 de Jun. de 2016
yes it is correct

Iniciar sesión para comentar.

Respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by