read a excel file and search for each column the smallest number between row 8960 and 9000 in matlab
main.m
data = xlsread('your_file.xlsx', 'A8960:A9000');
min_value_column1 = min(data);
data = xlsread('your_file.xlsx', 'B8960:B9000');
min_value_column2 = min(data);
% Repeat the above for other columns as needed