Reading all values as a string from excel file

42 views (last 30 days)
Sarah R
Sarah R on 24 Jan 2022
Commented: Voss on 24 Jan 2022
I have an excel file that includes, strings, numbers and time in the format "01:59.00"
When I use xlsread in Matlab to read in the sheet I am currently using [~, ~, alldata] = xlsread... however, my time variables are getting converted to decimals.
Is there any way I am able to keep the time variable or even read it as a string?
Thank you in advance
  1 Comment
Stephen23
Stephen23 on 24 Jan 2022
Edited: Stephen23 on 24 Jan 2022
"my time variables are getting converted to decimals."
Nothing is "getting converted", in fact Excel stores dates as serial date numbers:
Ultimately all data stored on an Excel worksheet are either text or numeric: dates are numeric, so XLSREAD is giving you the actual data saved in the workbook. Formatting in Excel that interprets that serial date number and displays it in particular ways is purely an artifact of your OS's locale settings or the cell formatting.

Sign in to comment.

Answers (2)

Voss
Voss on 24 Jan 2022
Maybe you can just convert the decimal times to datetimes using the datetime() function, after reading them in.
now()
ans = 7.3855e+05
datetime(now(),'ConvertFrom','datenum')
ans = datetime
24-Jan-2022 01:24:14
  2 Comments
Stephen23
Stephen23 on 24 Jan 2022
Edited: Stephen23 on 24 Jan 2022
How does this account for the different epochs used by MATLAB's and Excel's serial date numbers ?

Sign in to comment.


Stephen23
Stephen23 on 24 Jan 2022
In Excel dates are stored as serial date numbers, so what you are getting is the raw data.
The best solution is to use READMATRIX or READCELL which will (either automagically or with some hints from you) import Excel's serial date numbers as DATETIME objects.
The next option, if you insist on using outdated XLSREAD, is to do that conversion yourself. There are many threads on this forum showing how, the simplest approach is to use DATETIME which has this conversion built in:
N = 39448.25 % Excel serial date number
N = 3.9448e+04
D = datetime(N,'convertFrom','excel')
D = datetime
01-Jan-2008 06:00:00

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!