writecellでのExcelシートへの書き込み マージされたセル セルの色は元のままにしたい
6 views (last 30 days)
Show older comments
以下、行った処理と結果を書きます。
行った処理の概要
% 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 Comments
Answers (0)
See Also
Categories
Find more on スプレッドシート in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!