Change colour of cells of an excel worksheet imported into matlab
41 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi Guys,
I have an excel spreadsheet that contains a table of results of correlations between variables. I would like to read this document into matlab, then use a code that will loop through the worksheet and highlight every cell that is <0.05 in the colour green (to show a significant correlation), what code would I use to do this please?
Thanks
2 comentarios
Sindar
el 9 de Mzo. de 2020
Why do you want to use Matlab for this?
(In Excel, you can use conditional formatting to do the same thing in one step)
Walter Roberson
el 12 de Mzo. de 2020
https://www.mathworks.com/matlabcentral/answers/509463-coloring-variable-cells-in-excel is pretty much the same.
Respuestas (1)
Monisha Nalluru
el 12 de Mzo. de 2020
I have attached the excel file for the reference work.
The code below is used to color a cell in third column with values greater than 5.
m=xlsread("testing.xlsx");
% Connect to Excel
Excel = actxserver('Excel.application');
% Get Workbook object
WB = Excel.Workbooks.Open(fullfile(pwd, 'testing.xlsx'),0,false);
for i=1:numel(m(:,3))
if m(i,3)>5
cell="C"+num2str(i);
% Set the color of required cell of Sheet 1 to GREEN
%color Index for GREEN is 4 in excel
WB.Worksheets.Item(1).Range(cell).Interior.ColorIndex = 4;
end
end
% Save Workbook
WB.Save();
% Close Workbook
WB.Close();
% Quit Excel
Excel.Quit();
Refer the following link:
0 comentarios
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!