I'm unable to access data using xlsread
Infos
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Afficher commentaires plus anciens
w=xlsread("data.xlsx",1,g9:g345");
5 commentaires
androidguy
le 8 Fév 2018
Your excel sheet might not have sheet 1 or has a different name. So you need to check the excel sheet or just leave the sheet name out of the function and try again.
SOC = xlsread('EIG_Battery.xlsx','g9:g86')
per isakson
le 8 Fév 2018
Modifié(e) : per isakson
le 8 Fév 2018
Whould a capital S help
Sheet1
?
Walter Roberson
le 8 Fév 2018
Try
SOC=xlsread('EIG_Battery.xlsx',1,'g9:g86');
Aletta Wilbrink
le 8 Fév 2018
Is the name sheet1 spelled correctly? Maybe you have an capital s or a space somewhere
Walter Roberson
le 8 Fév 2018
[status, sheetnames] = xlsinfo('EIG_Battery.xlsx');
will return the sheet names in the second output.
Réponses (1)
Abhinav
le 8 Fév 2018
0 votes
You need to use the exact name of sheet. This is case sensitive. For e.g. if sheet name in excel workbook is Sheet1, then in function you should type Sheet1, not sheet1.
Cette question est clôturée.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!