Effacer les filtres
Effacer les filtres

Read cells of .xlsx file and save a .txt file

2 vues (au cours des 30 derniers jours)
Márcio Marques
Márcio Marques le 23 Mar 2017
Réponse apportée : KSSV le 24 Mar 2017
Hello evebody,
I need read one column of cells from .xlsx file and then write to a .txt file.
Anyone can help me please?
thank you very much.

Réponses (1)

KSSV
KSSV le 24 Mar 2017
% make some excel file
data = rand(10) ;
xlswrite('junk.xls',data) ;
% read the first column in excel file
[num,txt,raw] = xlsread('junk.xls','A:A') ;
% write to text file
save 'data.txt' num -ascii
There are other methods to save file. You may check fprintf, save, dlmwrite, etc.

Community Treasure Hunt

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

Start Hunting!

Translated by