Error when selecting variables from an Excel sheet
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Mohamed Ahmed
 il 23 Apr 2022
  
    
    
    
    
    Commentato: Mohamed Ahmed
 il 23 Apr 2022
            The code line
opts = spreadsheetImportOptions("VariableNamesRange",5, ...
    "SelectedVariableNames",{'Sample Name'})
returns
Error using matlab.io.spreadsheet.SpreadsheetImportOptions
Unknown variable name: 'Sample Name'.
    opts = matlab.io.spreadsheet.SpreadsheetImportOptions(varargin{:});
Why am I receiving this error message? And any help to solve this problem will be much appreciated. Many thanks in advance.
0 Commenti
Risposta accettata
  Simon Chan
      
 il 23 Apr 2022
        Better to define the Variable Names already in the spreadsheet as follows:
opts = spreadsheetImportOptions("VariableNamesRange",5, 'VariableNames',{'Var1','Var2','Sample Name','Var3'}...
    "SelectedVariableNames",{'Sample Name'})
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Data Import from MATLAB in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

