how to get string as output from inputdlg?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
amirhossein sarfi
le 20 Mai 2019
Commenté : amirhossein sarfi
le 20 Mai 2019
Hi everyone,
In the following script when I am trying to get sheet name from user by inputdlg as string to use for xlsread gives me the error:
Error using xlsread (line 146)
Sheet argument must be a string scalar, a character vector, or an integer.
Error in try_input (line 17)
data = xlsread(filename ,sheet ,xlRange);
the related scripts is:
sheet = inputdlg('Enter the input sheet name please:',...
'Input', [1 50]);
xlRange = 'D2:E44509';
data = xlsread(filename ,sheet ,xlRange);
Thanks.
0 commentaires
Réponse acceptée
Dennis
le 20 Mai 2019
inputdlg returns a cell array and not a string.
Try
data = xlsread(filename,sheet{1},xlRange);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!