Reading Certain Column from Excel

조회 수: 19 (최근 30일)
Devesh Kumar
Devesh Kumar 2022년 10월 17일
답변: Image Analyst 2022년 10월 17일
Hello Everyone , I am trying to read certain column , from Multisheet Excel, which I am using as input for my Calculation
clc
clear
clearvars
opts = detectImportOptions('Fatigue_life_input.xlsx','Sheet','Input Data','NumHeaderLines',1);
opts.VariableNames = 'Values';
datos = readtable('Fatigue_life_input.xlsx',opts)
Here I am trying to read , Sheet name : Input Data from Filename Fatigue_life_input and I want to read Numeric values which is column 2 . But instead of that it is read column 1.
This is my Input file is excel , I am trying to read only values section
And this is what i am getting in MATLAB.

답변 (1개)

Image Analyst
Image Analyst 2022년 10월 17일
You forgot to attach the workbook. Please do so. What I usually do is
datos = readtable('Fatigue_life_input.xlsx', 'Sheet', 'Input Data', 'Range', 'B2:B19')

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by