[Help] writetable text alignment and saving pre 0

10 views (last 30 days)
Hello Everyone,
I am incurring a little problem on execution of following code
filename='myExcelFile.xlsx';
myTable = cell2table(Dataset, 'VariableNames', header);
writetable(myTable, filename, 'WriteVariableNames', true);
By writing a table to excel, it removes pre 0. I mean it saves 0409 to 409. Is there any way to preserve initial zeros?
Second, can we sort the data in columns as well? For instance, it sorts Text data to flush left and numerical data to flush right. Can we initialize a directon for that?
Any help would be appreciated.
Thank you :-)
  3 Comments
Adam Danz
Adam Danz on 7 Aug 2019
Sometimes there's a glitch in the system that allows for >1 answer to be accepted within a quick window of time but generally only 1 acceptance is allowed. That discussion is here:
Flip a coin or choose Guillaume's since he beat me by <1 minute ;)
Waqar Ali Memon
Waqar Ali Memon on 7 Aug 2019
Yeahhh... Done for both answers :-)
Thank you :-) By the way Guillaume won the toss :-p

Sign in to comment.

Accepted Answer

Adam Danz
Adam Danz on 7 Aug 2019
"By writing a table to excel, it removes pre 0. I mean it saves 0409 to 409. Is there any way to preserve initial zeros?"
Numerically it makes no difference whether there are leading 0s or not. There are settings within Excel (see link) to allow for leading zeros. Alternatively you can convert the numers to strings and write them as strings ('0409', with quotes) but then you'll need to convert them back to numeric for the data to be useful so this would be a poor choice.
"can we sort the data in columns as well? For instance, it sorts Text data to flush left and numerical data to flush right. Can we initialize a directon for that?"
I believe you're asking about right/left justification (not sorting). Please correct me if I'm wrong. Again, that's a setting you can control from excel (see link).
If I'm understanding your questions correctly, none of these issues are controllable from Matlab. The 2 links I shared where among the first links provided by a quick google search.

More Answers (1)

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!