writing string into excel
이전 댓글 표시
I am trying to simply write cell string array to excel
xlswrite(ExclFl,cellstr("1.1234"),'A1:A1');
or
xlswrite(ExclFl,{'1.1234'},'A1:A1');
in excel the written string is shown as 11.234, I tried to change the format of the cell but no luck.
Another strange observation is that if I have a string like
xlswrite(ExclFl,{'0.1234'},'A1:A1');
then it is correctly shown in excel.
Any idea?
댓글 수: 4
dpb
2020년 5월 8일
Can't reproduce here.
Af
2020년 5월 8일
dpb
2020년 5월 8일
Same ML Release, Excel version, still Win7 though.
While didn't test on W10, I've never observed such on that system either, so agree must be something unique to your setup.
What happens if you use writetable instead of xlswrite?
Af
2020년 5월 12일
답변 (1개)
Harsha Priya Daggubati
2020년 5월 11일
Hi,
I could not reproduce the same at my end too. I guess there might be a cache issue. Try using the following commands.
rehash toolbox
rehash toolboxcache
Hope this helps!
댓글 수: 4
Af
2020년 5월 11일
Harsha Priya Daggubati
2020년 5월 11일
Hi,
Could you check whether this solution might help you
dpb
2020년 5월 11일
Same Q? as above...what if you use writetable instead? Would prove whether it is MATLAB/xlswrite that is the problem or a system/Excel issue. The above looks like locale settings issues may be in the way.
Af
2020년 5월 12일
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!