How convert date and time to number that excel will recognize the really date and time?
2 次查看(过去 30 天)
显示 更早的评论
I need to convert a column that contains dates to numbers and a column that contains time to number also in order to be able to perform some processes. I tried x2mdate and datenum but when I open the file with excel and I convert it again to date and time respectively the excel doesn't recognize the real dates and times. What is my wrong?
Thank you in advance
1 个评论
Peter Perkins
2016-9-23
Kelly, I don't think you've provided enough information to answer your question. What exactly are your dates and times stored as, you writing to a file or working within MATLAB, and so on.
回答(1 个)
George
2016-9-23
A = table(datetime());
writetable(A, 'myfile.xlsx');
3 个评论
Walter Roberson
2016-9-23
If the dates and times are in two cell arrays, then you can use
strjoin(dates_cell(:), {' '}, times_cell(:))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dates and Time 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!