Borrar filtros
Borrar filtros

How to for loop readtable and writetable range?

14 visualizaciones (últimos 30 días)
Anilcan Taner
Anilcan Taner el 25 de Abr. de 2021
Comentada: Anilcan Taner el 26 de Abr. de 2021
Let's say I have a worksheet consist of words and numbers. I want to change certain cells or cell groups with a for loop. How may I handle it?
data=readtable('test4.xls','ReadVariableNames',0,'Range','Ex:Fx');
writetable(A, 'test4.xls','WriteVariableNames',0, 'Range', 'BX:CX');
I want the "x" values here to be change as for loop goes on from i=1:10, lets say.
(To be more clear, if i = 3 the range will be E3:F3)
Btw, the solution has to in this form ( readtable and writetable) . Since I'm using Ubuntu and couldn't find any other solution for now, to my problem. Other solutions are currently either not avaible in R2018a or does not overwrites to existing .xls file.

Respuesta aceptada

VBBV
VBBV el 25 de Abr. de 2021
Editada: VBBV el 25 de Abr. de 2021
%f true
%if true
for i = 1:10
R1 = sprintf('%s%d:%s%d',char(069),i,char(070),i);
R2 = sprintf('%s%d:%s%d',char(066),i,char(067),i);
data=readtable('test4.xls','ReadVariableNames',0,'Range',R1);
writetable(A, 'test4.xls','WriteVariableNames',0, 'Range', R2);
end
Try this
  1 comentario
Anilcan Taner
Anilcan Taner el 26 de Abr. de 2021
I got the idea I' ve to change some few, but at the end issue is solved. However, I want to ask is there any other way to write column names other than char(xxx)? If not how may I translate A, B, C .. etc?

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by