我使用EPPlus在Excel中创建电子表格,我的目标是根据列F中存在的值为单元格着色。
条件格式
A = rand(1,5);
B = pi*A;
C = A./B; %Divide the two
PropArray = all(abs(diff(C))<(3*eps)); % check for equality within tolerance
if PropArray
PropConst = C(1); % they're all equal, get the constant
else
PropConst = nan; % They're not equal, set nan
end
打开文件时的消息:
我们发现“FileName.xlsx”中的某些内容存在问题。您想要我们吗? 试图尽可能多地恢复?如果您相信这个来源 工作簿,单击是。
我不明白我公式的错误。
答案 0 :(得分:2)
在AND公式中用逗号替换分号,例如:
conditionalFormattingRule02.Formula = "AND($F9>15,$F9<=30)";
...
conditionalFormattingRule03.Formula = "AND($F9>30,$F9<=60)";