필터 지우기
필터 지우기

Error using xlsread 'No appropriate method, property, ...'

조회 수: 1 (최근 30일)
Christoph Thale
Christoph Thale 2016년 8월 25일
댓글: Guillaume 2016년 8월 26일
Hi,
I have MATLAB R2015a and i want to read out a xls excel sheet with matlab. Every time I open it in my code i get this red Error:
_Error using xlsread (line 247)
No appropriate method, property, or field 'FileFormat' for class
'Interface.000208DA_0000_0000_C000_000000000046'._
I already created my own excel sheet but i receive the same error.
Yesterday everything worked fine. Don't why it stucks today.
  댓글 수: 10
Christoph Thale
Christoph Thale 2016년 8월 26일
It is not able to look in the Makro-Code without the password.
Guillaume
Guillaume 2016년 8월 26일
If the file is in xls format, the password protection is easy to bypass/remove. What I want to look at is the file structure, so the fact that the macros are password protected shouldn't matter.

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2016년 8월 25일
I guess problem is with loop... Instead of [num,txt,Messwerte{i}] = xlsread(Pfad,3); use as below
[num,txt,Messwerte1] = xlsread(Pfad,3);
Messwerte{i} = Messwerte1 ;
  댓글 수: 1
Guillaume
Guillaume 2016년 8월 25일
The two different syntaxes are equally valid and will make absolutely no difference to what happens.
This certainly won't resolve any problem.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by