Error using getappdata when Import excel with multiple sheets

1 Ansicht (letzte 30 Tage)
Dinouk Goonewardena
Dinouk Goonewardena am 6 Jul. 2020
I keep getting an error which I cant seem to solve, all the code is the files, Import_PB imports the excel file.
The error=>
Error using getappdata
Value must be a handle.
Error in Import_PB (line 44)
handles.SheetsData =getappdata(h,'SheetsData');

Antworten (1)

Jyotsna Talluri
Jyotsna Talluri am 9 Jul. 2020
The error occurs when the handle 'h' you are refering to is not a valid handle of a handle graphics object .
handles.SheetsData = getappdata(h,'SheetsData');
Check if you have specified 'Tag' property correctly as findobj is not returning a valid handle
h = findobj('Tag','GUI_PB');
  1 Kommentar
Dinouk Goonewardena
Dinouk Goonewardena am 10 Jul. 2020
for some reason it does not reconogize the handles from PB_sheet....any idea to fix it?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by