Effacer les filtres
Effacer les filtres

Find and read a value in an excel spreadsheet

2 vues (au cours des 30 derniers jours)
Nathan Kennedy
Nathan Kennedy le 5 Sep 2017
Réponse apportée : KL le 5 Sep 2017
Hi,
If I create two arrays in MATLAB that represent and store the column name and row names of a table, I want to then find the matching value in an excel spread sheet corresponding to the column name and row name elements
Possible?
Thanks, N Kennedy

Réponses (1)

KL
KL le 5 Sep 2017
Something like this?
filename = 'myExample.xlsx';
sheet = 1;
columnNames = {'A','B','C'};
rowNames = {'1','2','3'};
xlRange = [columnNames{1} rowNames{1}];
yourData = xlsread(filename,sheet,xlRange);

Community Treasure Hunt

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

Start Hunting!

Translated by