writecellでのExcelシートへの書き込み マージされたセル セルの色は元のままにしたい
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
以下、行った処理と結果を書きます。
行った処理の概要
% writecellで書き込む変数を用意
tmp = cell(8,1);
%セル配列変数の各要素に値を格納
tmp(1,1) = cellstr(A); %Aは文字ベクトル
% writecellで書き込み
writecell(tmp(1,1), Excel bookへのパス, 'Sheet','シート名','Range', 'E13:H13');
結果
E13:H13はExcelシートでマージされているが、writecellで書き込むと、E13だけに値が入りシートの色も白くなってしまう。
マージされた範囲にそのまま出力し、シートの色もそのままにするにはどうしたら良いのでしょうか?
0 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu スプレッドシート finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!