Why does my variable not run through as a string?

1 vue (au cours des 30 derniers jours)
Joseph
Joseph le 14 Nov 2014
Commenté : Star Strider le 25 Juin 2018
Whenever I run my function to load a name and return an excel file for that name, I get this error:
Error using xlsread (line 122) Filename must be a string.
Error in loadNCIR (line 9) [~,vaccineName,~] = xlsread(excel);
function [Name] = loadName( Name )
excel = inputdlg(['Please enter the name for the ' Name ' xls file: ']...
,'s');
if strcmp(excel, '') == 1;
Name = {};
else
[~,Name,~] = xlsread(excel);
end
What am I doing wrong? My input is a variable for a string, and the output should be the excel file.

Réponse acceptée

Star Strider
Star Strider le 14 Nov 2014
The inputdlg function returns a cell. Use char to convert it to a string variable:
excelstr = char(excel);
  2 commentaires
Leopoldo Campos Carrillo
Leopoldo Campos Carrillo le 25 Juin 2018
Thanks man i apreciate!!!
Star Strider
Star Strider le 25 Juin 2018
My pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

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!

Translated by