访问VBA - 使用2种不同的xlFormatCondictionTypes进行条件格式化

时间:2016-01-27 21:13:16

标签: excel vba excel-vba

我想从访问excel导出时进行条件格式化。我必须检查条件1(类型:= xlExpression)和条件2(类型:= xlTextString)。如果两者都为真,则在excel中突出显示任何颜色的行。这是我的代码:

while IFS=, read -r field1 field2 rest_of_line; do
   echo "Field 3: ${rest_of_line}" 
done < test.txt

如何将上述2个条件合并为一个条件。

谢谢,

1 个答案:

答案 0 :(得分:0)

你的帖子中的代码在某些区域有点遍布,所以我对修复的假设可能有些偏差。但是,你可以很容易地调整那些东西。

就组合条件而言,只需将另一个公式放在当前表达式的With xlSheet Set range = .Range("A1:L1") range.FormatConditions.Add Type:=xlExpression, Formula1:="=AND($I1>=TODAY(),($I1<(TODAY()+30),NOT(ISERROR(FIND(""Focus"",$I1))))" With range.FormatConditions(1).Interior .Color = Any color End With End With 包装中。

from sklearn.datasets.mldata import fetch_mldata
    data = fetch_mldata('mnist-original')

dataset = fetch_mldata('mnist-original', data_home='***')